// JavaScript Document
/* Menu */
$(".language a:first").attr("href", getURLFR());
$(".language a:last").attr("href", getURLEN());
initMenu();
function initMenu() {
	$(".subMenu").show();
	$(".subMenu").hide();
	$(".bouton").hover(function () {showMenu($(this));}, function () {hideMenu($(this));} );
}
function showMenu(myElement) {
	myElement.children("a:first").fadeTo("normal", 0.3);
	myElement.children(".subMenu").stop(true, true).slideDown();


}
function hideMenu(myElement) {
	myElement.children("a:first").fadeTo("fast", 1);
	myElement.children(".subMenu").fadeOut();
}
function getURLFR() {
	var url = window.location.pathname;
	
	return "http://www.dmailer.fr" + url;
}
function getURLEN() {
	var url = window.location.pathname;
	return "http://www.dmailer.com" + url;
}