var Splash = function(){
	
	function anima1(){
		setTimeout ( anima2, 10000 );
	}
	
	function anima2(){
		$(".move").animate({'left': '-=595px'}, 1000);
		setTimeout ( anima3, 10000 );
	}
	
	function anima3(){
		$(".move").animate({'left': '-=595px'}, 1000);
		setTimeout ( anima4, 10000 );
	}
	
	function anima4(){
		$(".move").animate({'left': '-=595px'}, 1000);
		setTimeout ( anima5, 10000 );
	}
	
	function anima5(){
		$(".move").animate({'left': '-=595px'}, 1000);
		setTimeout ( anima6, 10000 );
	}
	
	function anima6(){
		$(".move").animate({'left': '+=2380px'}, 1000);
		anima1();
	}
	
	$(document).ready(function(){
		$('.innerfade', '.left').innerfade({ 
			animationtype: 'fade', 
			speed: 'normal', 
			timeout: '10000', 
			type: 'sequence', 
			containerheight: '265px', 
			runningclass: 'innerfade' 
		});
		
		$('.innerfade', '.right').innerfade({ 
			animationtype: 'fade', 
			speed: 'normal', 
			timeout: '8000', 
			type: 'sequence', 
			containerheight: '280px', 
			runningclass: 'innerfade' 
		});
		
		anima1();
		
		//$(".link_preview").prepend("<div class='jLinkPreview' style='background:url(http://wimg.ca/bgcolor_000000_w_270_h_210/http://www.trancemedia.eu/home) 0 -3px'><a href='" + URL + "/home'></a></div>");
	});
	
	
};

$(document).ready(function(){
	new Splash();
});
