$(document).ready(function(){ 

	/* Visualizza la pagina di benvenuto nella home */
	$('#content .text_content').load('/themes/pages/index.html');
	
	/* Apri i link nel box del content */
	$('.link').click(function() {
		
		var href_array = $(this).attr('href').split('#');
		var href = href_array[1];
			
		$('#content .text_content').slideUp('slow', function() {
			loadContentText(href);
			$('#content .text_content').slideDown('slow');
		});
		
		if(	href == 'index' ||
			href == 'player_mediaplayer' ||
			href == 'player_realplayer' ||
			href == 'player_winamp' ||
			href == 'player_itunes'
		)		$('#players').slideDown();
		else	$('#players').slideUp();
		
		return false;
	});
	
	$('#players .player')
		.mouseover(function() {
			$(this).stop().animate(
				{paddingRight:"130px"},
				{duration:200})
		})
		.mouseout(function() {
			$(this).stop().animate(
				{paddingRight:"0"},
				{duration:200})
		});
	
});

var loadContentText = function(page) {
	$('#content .text_content').load('/themes/pages/'+ page +'.html');
}
