$( document ).ready(
	function () {
		$( "div.text" , "table.centro" ).height( 100 );
		var docH = ( $( document ).height() - 20 );
		$( "#container" ).height( docH );
		$( "div.text" , "table.centro" ).height( docH - 140 );
		
		$( window ).resize(
			function () {
				$( "div.text" , "table.centro" ).height( 100 );
				var docH = ( $( document ).height() - 20 );
				$( "#container" ).height( docH );
				$( "div.text" , "table.centro" ).height( docH - 140 );
			}
		);
		
		if ( $( "#audio" ).length ) {
			$( "#audio li" ).click(
				function () {
					$( "#audio li" ).removeClass( "click" );
					$( this ).addClass( "click" );
					var txt = $( this ).text();
					var sTitle = encodeURIComponent ( txt );
					var sFile  = txt.replace( / /g , "_" ).replace( /[^\w\d]/g , "" );
					if ( $( this ).hasClass( "live" ) ) {
						sFile = "live/" + sFile;
					}
					$( "#player" ).html(
						"<object type=\"application/x-shockwave-flash\" width=\"400\" height=\"15\" data=\"/audio/xspf_player_slim.swf?song_url=/audio/" + sFile + ".mp3&autoplay=true&song_title=" + sTitle + "\">" + 
						"<param name=\"movie\" value=\"/audio/xspf_player_slim.swf?song_url=/audio/" + sFile + ".mp3&autoplay=true&song_title=" + sTitle + "\" />" + 
						"</object>" + 
						""
					);
				}
			);
			
			if ( $( "#audio li:eq(0)").hasClass( "live" ) ) {
				var $this = $( "#audio li:eq(0)");
				$( "#audio li" ).removeClass( "click" );
				$( $this ).addClass( "click" );
				var txt = $( $this ).text();
				var sTitle = encodeURIComponent ( txt );
				var sFile  = txt.replace( / /g , "_" ).replace( /[^\w\d]/g , "" );
				sFile = "live/" + sFile;
				
				$( "#player" ).html(
					"<object type=\"application/x-shockwave-flash\" width=\"400\" height=\"15\" data=\"/audio/xspf_player_slim.swf?song_url=/audio/" + sFile + ".mp3&autoplay=true&song_title=" + sTitle + "\">" + 
					"<param name=\"movie\" value=\"/audio/xspf_player_slim.swf?song_url=/audio/" + sFile + ".mp3&autoplay=true&song_title=" + sTitle + "\" />" + 
					"</object>" + 
					""
				);
			} else {
				$( "#player" ).html(
					"<object type=\"application/x-shockwave-flash\" width=\"400\" height=\"15\" data=\"/audio/xspf_player_slim.swf?song_url=/audio/none.mp3&autoplay=true&song_title=Selezionare un brano dalla lista\">" + 
					"<param name=\"movie\" value=\"/audio/xspf_player_slim.swf?song_url=/audio/none.mp3&autoplay=true&song_title=Selezionare un brano dalla lista\" />" + 
					"</object>" + 
					""
				);
			}
		}
	}
);