// JavaScript Document
function showLogo(val){
	var myAnimation = new AnimateImage('/img/logo.png',{ 
		width: 146, 
		height: 137, 
		rows: 9, 
		cols: 9, 
		fps: 30,
		autostart :true
	}); 
	$(myAnimation).inject($('logo'));
	//$('data').set("text",myAnimation.getFrame());
	var checkLogo;
	var addCount = function(){ 
		
		if(myAnimation.getFrame()==81){
			myAnimation.stop();
		}else{
			//$('data').set("text",myAnimation.getFrame()); 
		}
	};
	addCount.periodical(1, checkLogo); //Will add the number of seconds at the Site.	
	if(val){
		$('logo').setStyle('left',34);
	}
	
	$(myAnimation).addEvent('click',function(){
		window.location.href="/index.php";
	});
	$(myAnimation).addEvent('mouseover',function(){
		$(myAnimation).setStyle('cursor','pointer');
	});	
	//Cufon.replace('h1.nameMenu a');
	
	//Menu
	//handleMenu();
}
