// JavaScript Document
$(document).ready(function(){
	/*$(".niveau1").hide();
	$(".niveau1_bis").hide();
	$(".niveau2").hide();
	$(".niveau3").hide();*/
	
	$(".onglet_haut").hover(function(){
		$(this).children('div').show(); //'fast'
	}, function(){
		$(this).children('div').hide(); //'slow'
	})
	.end();
	
	$(".niveau1 div").hover(function(){
		$(this).children('div').show();
		var screen=$(window).height();
		var offset = $(this).offset();
		if(offset.left>(screen/2)) $(this).children('div').css("left",-119).css("right","auto");
		else $(this).children('div').css("left","auto").css("right",0);
	}, function(){
		$(this).children('div').hide(); //'slow'
	})
	.end();	
	
	$(".niveau1_bis").hover(function(){
		$(this).children('div').show();
		var screen=$(window).height();
		var offset = $(this).offset();
		if(offset.left>(screen/2))	$(this).children('div').css("left",-119).css("right","auto");
		else $(this).children('div').css("left","auto").css("right",0);
	}, function(){
		$(this).children('div').hide(); //'slow'
	})
	.end();
	
	$(".niveau2 div").hover(function(){
		$(this).children('.niveau3').show();
		var screen=$(window).height();
		var offset = $(this).offset();
		if(offset.left>(screen/2))	$(this).children('.niveau3').css("left",-119).css("right","auto");
		else $(this).children('.niveau3').css("left","auto").css("right",0);
	}, function(){
		$(this).children('.niveau3').hide(); //'slow'
	})
	.end();
});
