$(document).ready(function(){
	
	// menu 
	$("#menu a").hover(
        function(){
            $(this).animate({top:-5}, 300)
        },
        function(){
            $(this).animate({top:-10}, 100);
        }
    );

	

});


function ReplaceChar(chaine){
	temp = chaine.replace(/[àâä]/gi,"a");
	temp = temp.replace(/[éèêë]/gi,"e");
	temp = temp.replace(/[îï]/gi,"i");
	temp = temp.replace(/[ôö]/gi,"o");
	temp = temp.replace(/[ùûü]/gi,"u");
	return temp ;

};

function mailpage(){
	   chaine_mail = "mailto:?subject= Interactif Immo : " + ReplaceChar(document.title);
	   chaine_mail += "&body= Je recommande cette page : " + ReplaceChar(document.title);
	   chaine_mail += ". Consultable a l'adresse : " + location.href;
	   location.href = chaine_mail;
	   } 