$(document).ready(function(){
	initALL();
});

function initALL(){
	//liens fadeIn/fadeOut img
	$('.overFade').hover(
        function(){
            $(this).find("img").next("img").fadeIn(200);
        }, function(){
            $(this).find("img").next("img").fadeOut(200);
     });
	
	//petit menu prime
	$('#prime .overFade').mouseleave(function(){
			$(this).find("img").next("img").hide();
     });
	
	//anime retour haut
	$('a[href="#hautp"]').click(function(){
		$('html,body').animate({scrollTop:0},300);
		return false;
	});
	
	//menu prime
	$('#prime a').click(function(){
		var test = $(this).attr('href');
		onglet(test);
	});
	
	//onglet(window.location.hash);
}

//menu prime
function onglet(hash){
	window.location.hash = hash;
	hash = hash + 'Box'
	
	offset = $(hash).offset();
	$('html,body').animate({scrollTop:offset.top},300);
	return false;
}
