main =
{
	index:0,

	start_anim: function(lang)
	{
		main.index = 1;
		var timer = setInterval(function() 
        	{
        		if(main.index > 7)
		        {
		        	main.index = 0;
            		}
            
			$(".video").fadeOut("slow", function() {
		
			if(main.index==0)
			{
				$(".video").css("background","url(screenshot1-"+lang+".png)");
			}
			else if(main.index==1)
			{
				$(".video").css("background","url(screenshot9-"+lang+".png)");
			}
			else if(main.index==2)
			{
				$(".video").css("background","url(screenshot3-"+lang+".png)");			
			}
			else if(main.index==3)
			{
				$(".video").css("background","url(screenshot8-"+lang+".png)");			
			}
			else if(main.index==4)
			{
				$(".video").css("background","url(screenshot7-"+lang+".png)");			
			}
			else if(main.index==5)
			{
				$(".video").css("background","url(screenshot5-"+lang+".png)");			
			}
			else if(main.index==6)
			{
				$(".video").css("background","url(screenshot4-"+lang+".png)");			
			}
			else if(main.index==7)
			{
				$(".video").css("background","url(screenshot2-"+lang+".png)");
			}
			
			$(".video").fadeIn("normal");
			main.index = main.index+1;
			});
			

        }, 5000);
		
	},

	menuonoff_changed: function(event)
	{
    	$('.chooselang').toggleClass("on");
    	
    	if($('.chooselang').hasClass("on"))
    	{
	    	$('.menulang').fadeIn();
	    }
	    else
	    {
	    	$('.menulang').hide();
	    }
	},
};