function initMenu() {
	$('#accueil img').attr('width', $('#accueil a').width()-10);
	$('#recherche img').attr('width', $('#recherche a').width()-10);
	$('#appartements img').attr('width', $('#appartements a').width()-10);
	$('#villas img').attr('width', $('#villas a').width()-10);
	$('#vefa img').attr('width', $('#vefa a').width()-10);
	$('#locations img').attr('width', $('#locations a').width()-10);
	$('#contact img').attr('width', $('#contact a').width()-10);
	
	var menuButtons = new Array();
	
	if ($('#accueilSelected').css('display') == 'none')
		menuButtons.push('accueil');
	if ($('#rechercheSelected').css('display') == 'none')
		menuButtons.push('recherche');
	if ($('#appartementsSelected').css('display') == 'none')
		menuButtons.push('appartements');
	if ($('#villasSelected').css('display') == 'none')
		menuButtons.push('villas');
	if ($('#vefaSelected').css('display') == 'none')
		menuButtons.push('vefa');
	if ($('#locationsSelected').css('display') == 'none')
		menuButtons.push('locations');
	if ($('#contactSelected').css('display') == 'none')
		menuButtons.push('contact');
	
	jQuery.each(menuButtons, function(){
		$("#" + this +  'Selected').hide();
		$("#" + this).hover(function() {
									 $("#" + this.id +  'Selected').show();
									 $(this).height(25);
									 $(this).animate(
										{
											top: '-5'
										},
										100
									 )
									 },
									 function() {
										 $(this).height(25);
										 $(this).animate(
											{
												top: '0'
											},
											100
										 )
										 $("#" + this.id +  'Selected').hide();
									 }
							);
	});
}
