/*@uthor : yansouri*/

$(document).ready(function () {
	
	$("#splash").animate({
		marginTop: [100, "easeOutBounce"], 
		opacity: "1"
		}, 2500, function(){
			//callback
		});
	$("a.fr img").click(function(){
			$.cookie('lg', 'fr', {path: '/' });
		});
	$("a.nl img").click(function(){
			$.cookie('lg', 'nl', {path: '/' });
		});
	$("a.uk img").click(function(){
			$.cookie('lg', 'uk', {path: '/' });
		});	
	
		/* check language and redirection*/
		if(($.cookie('lg')) == "fr"){
			document.location.href="/fr"
		}
		if(($.cookie('lg')) == "nl"){
			document.location.href="/nl"
		}
		if(($.cookie('lg')) == "uk"){
			document.location.href="/uk"
		}
});		
