
function homeLink() {

	$("#entete .logo").hover(
	
		function () {
		
			$(this).css("cursor","pointer");
		},
		function () {
		
			
		}
	);
	
	$("#entete .logo").click(
	
		function () {
		
			window.location.href='/';
		},
		function () {
		
			
		}
	);	
	
	
}


$(homeLink);
