$(document).ready(function() {
	
	$("a.contact").mouseover(function(){
    	$("#contact").animate({
		  "height": "show", "opacity": "show"
		}, 800);	
		$("#nav_fast").animate({
		  "height": "hide", "opacity": "hide"
		}, 800);
    }).mouseout(function(){
     	$("#contact").animate({
		  "height": "hide", "opacity": "hide"
		}, 800);
    });

	$("a.nav_fast").mouseover(function(){
    	$("#nav_fast").animate({
		  "height": "show", "opacity": "show"
		}, 800);
		$("#contact").hide();		
	 });
	 $("#nav_fast").mouseleave(function(){
		$(this).animate({
		  "height": "hide", "opacity": "hide"
		}, 800);
    });
	
	$(document.body).click(function()
	{
		$("#nav_fast,#contact").hide();
	})
	
	$("#header .menu a.promozioni").css("display","none");
	$("#header .menu_top a.audi").css("display","none");
	
	/*Menu*/
	var url = document.location.href;
	$(".menu_top a").each(function()
	{
		
		var href = $(this).attr("href").split("../").join("");
		var hrefPrefix = href.indexOf("/")!=-1 ? href.substring(0, href.lastIndexOf("/"))+"/" : href;
		
		if (url.indexOf(href)!=-1)
		{
			$(this).closest("li").find("ul").show();
			$(this).addClass("current");
		}
		else if (url.indexOf(hrefPrefix)!=-1)
		{
			$(this).closest("li").find("ul").show();
			$(this).addClass("active");
		}
	})
	
});
