//Inserire o spostare il country in base al numero dei video

function Fill(indice,country)
{
	var immagine_attiva=indice;

	if(country == 'FR' || country == 'EE' || country == 'LT' || country == 'LV' || country == 'SV' || country == 'NO' || country == 'FI')
	{
		var numero_immagini=1;
	}
	if(country == 'HU' || country == 'TK' || country == 'GR' || country == 'EX' || country == 'DE')
	{
		var numero_immagini=2;
	}
	if(country == 'IT' || country == 'PO'  || country == 'RO' || country == 'DK' || country == 'AT' || country == 'TK' || country == 'SL' || country == 'CH')
	{
		var numero_immagini=3;
	}
	if(country == 'BG' || country == 'NL' || country == 'CZ' || country =='SP' || country == 'UA')
	{
		var numero_immagini=4;
	}
	if(country == 'CS' || country == 'PL')
	{
		var numero_immagini=5;
	}
	
	for(i=1;i<=numero_immagini;i++)
	{
		if(i!=immagine_attiva)
		{
	        if($('titolo_video_'+i))
	        {	        	
	        	$('elenco_video_'+i).setStyle('color','#1593cd');
	        	$('titolo_video_'+i).setStyle('list-style-image','url("/indesit/2/_img/maggiore.gif")');
	        }

			if($('video_principale'+i))
        		$('video_principale'+i).setStyle('display','none');
        	if($('player'+i))
        	{
    	        var tween2 = new Fx.Tween($('player'+i), {duration: 500});
    	        tween2.start('opacity', 1, 0);	        
        		$('player'+i).setStyle('display','none');
        	}
		}
		else
		{
			var da_attivare=$('player'+i);
	        var tween = new Fx.Tween($(da_attivare), {duration: 500});
	        tween.start('opacity', 0, 1);
	        immagine_attiva=i;
	        if($('titolo_video_'+i))
	        {	        	
	        	$('elenco_video_'+i).setStyle('color','#d43e0b');
	        	$('titolo_video_'+i).setStyle('list-style-image','none');
	        	$('titolo_video_'+i).setStyle('list-style-type','none');	        	
	        }

	        if($('player'+i))
        	{
        		$('player'+i).setStyle('display','block');
        		$('player'+i).setStyle('opacity',0);
        		$('player'+i).fade('in');
        	}
        	if($('video_principale'+i))
        		$('video_principale'+i).setStyle('display','block');
		}
	}
}	

function sopra(country)
{
	var num_elementi=0;

	if(country == 'FR' || country == 'EE' || country == 'LT' || country == 'LV' || country == 'SV' || country == 'NO' || country == 'FI')
	{
		var num_elementi=1;
	}
	if(country == 'HU' || country == 'TK' || country == 'GR' || country == 'EX' || country == 'DE')
	{
		var num_elementi=2;
	}
	if(country == 'IT' || country == 'PO'  || country == 'RO' || country == 'DK' || country == 'AT' || country == 'TK' || country == 'SL' || country == 'CH')
	{
		var num_elementi=3;
	}
	if(country == 'BG' || country == 'NL' || country == 'CZ' || country =='SP' || country == 'UA')
	{
		var num_elementi=4;
	}
	if(country == 'CS' || country == 'PL')
	{
		var numero_elementi=5;
	}
	
	var spostamento= 89;
	var dur=0.4;
	var altezza=spostamento*num_elementi;
	new Fx.Scroll("contenitore", {offset: { 'x': 0, 'y': $('contenitore').scrollTop-spostamento}}).toTop();
}

function sotto(country)
{
	var num_elementi=0;

	if(country == 'FR' || country == 'EE' || country == 'LT' || country == 'LV' || country == 'SV' || country == 'NO' || country == 'FI')
	{
		var num_elementi=1;
	}
	if(country == 'HU' || country == 'TK' || country == 'GR' || country == 'EX' || country == 'DE')
	{
		var num_elementi=2;
	}
	if(country == 'IT' || country == 'PO'  || country == 'RO' || country == 'DK' || country == 'AT' || country == 'TK' || country == 'SL' || country == 'CH')
	{
		var num_elementi=3;
	}
	if(country == 'BG' || country == 'NL' || country == 'CZ' || country =='SP' || country == 'UA')
	{
		var num_elementi=4;
	}
	if(country == 'CS' || country == 'PL')
	{
		var numero_elementi=5;
	}

	var spostamento= 89;
	var dur=0.4;
	var altezza=spostamento*num_elementi;
	new Fx.Scroll("contenitore", {offset: { 'x': 0, 'y': $('contenitore').scrollTop+spostamento}}).toTop();
}
