$(document).ready(function() {

$('#menu_haut ul li').each(function() {
 $(this).mouseover(function(){$('ul', this).show();}).mouseout(function(){$('ul', this).hide();});
 });

});

function Lien() {
	i = document.Choix.Liste.selectedIndex;
	if (i == 0) return;
	url = document.Choix.Liste.options[i].value;
	parent.location.href = url;
}
