function initMenu(){
	
	$('#menu .menuItem').hover(
		function(){
			$(this).find('> a').addClass('over');
			$(this).find("ul").css('display','block');
		},
		function(){
			$(this).find('> a').removeClass('over');
			$(this).find("ul").css('display','none');
		}
	);
	
	$('#bt_exemple').hover(
		function(){
			$('#bulle').show();
			$('#bulle').css('marginTop','-'+$('#bulle').height()+'px');
		},
		function(){
			$('#bulle').hide();
		}
	);
	
}


function popup(page,largeur,hauteur)
{
	var top=(screen.height-hauteur)/2-20;
	var left=(screen.width-largeur)/2;
	options = 'toolbar=no,directories=no,status=no,scrollbars=yes,resize=no,menubar=no,location=no';
	window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

$(document).ready(initMenu);