$(document).ready(function(){
	$('.menu.dynamic ul li').hover(function(){
		$(this).children('ul').show();
	}, function(){
		$(this).children('ul').hide();
	});
    
    
    if ($("#admintoolbox").length == 0) {
        $(".Filiale img").wrap(function () {
           var href = $(this).attr("src").replace("Salons","Salons/salonsgr");

           href = href.substr(0,href.indexOf(".jpg"));
           href = href + "_gr.jpg";

           return "<a class='lightbox-new' href='"+href+"'></a>";
        });

        var lightboxInit = function () {
            $("a.lightbox").lightBox();
            $("a.lightbox-new").lightBox();
        }

        setTimeout(lightboxInit,300);
    }
});
function mt(name,domain,subject,body){
	location.href = "mailto:"+name+"@"+domain+'?subject='+subject+'&body='+body;
}

