function initMenuEvents()
{
	$('#choixProfil').mouseover(function() {
		$('#headerMenu').show();
	});
	
	$('#choixProfil').mouseout(function() {
		$('#headerMenu').hide();
	});
	
	// Bug IE7
	if ($.browser.msie && (jQuery.browser.version == '7.0')) {
		$('li.menuBorder').css('width', $('#headerMenu').width());
	}
}
