$(document).ready(function() {
	
	// Tooltip
	//$('a.tooltip').tooltip({showURL: false});
	
	// Start fancybox
	$("div#wrapper a.fb").fancybox({
		"hideOnContentClick": true,
		"overlayShow": true		
	});
		
	// Menu
	$("li.active").css("backgroundPosition", "0px -34px");
	$("#menu li").mouseenter(function (){
		
		$("li.active").css("backgroundPosition", "0px 0px");
				
		$(".sm", this).css("display", "block");
		$(this).css("backgroundPosition", "0px -34px");
	});
	
	$("#menu li").mouseleave(function (){
			
		$(".sm", this).css("display", "none");
		$(this).css("backgroundPosition", "0px 0px");
		
		$("li.active").css("backgroundPosition", "0px -34px");
	});
	
	$(".sm").mouseenter(function (){
		
		$("li.active").css("backgroundPosition", "0px 0px");
				
		$(this).css("display", "block");
		$(this.parentNode).css("backgroundPosition", "0px -34px");
	});
	
	$(".sm").mouseleave(function (){
		
		$(this).css("display", "none");
		$(this.parentNode).css("backgroundPosition", "0px 0px");
		
		$("li.active").css("backgroundPosition", "0px -34px");
	});
	
	//Spotlight
	$("#spotlight .spot").mouseenter(function (){
		
		$(".spot_hover", this).css("display", "block");
	});
	
	$("#spotlight .spot").mouseleave(function (){
		
		$(".spot_hover", this).css("display", "none");
	});
	
	// Product and Service Tabs
	$(".tab.desc").click (function (){
		
		$(".tabs .tab").css("backgroundColor", "#fff");
		$(this).css("backgroundColor", "#ccc");
	
		$(".desc_tab").css("display", "block");
		$(".spec_tab").css("display", "none");
		$(".deal_tab").css("display", "none");
		$(".info_ask").css("display", "none");
		
		/*document.getElementById("desc_tab").style.visibility = "visible";
		document.getElementById("spec_tab").style.visibility = "hidden";
		document.getElementById("deal_tab").style.visibility = "hidden";
		document.getElementById("info_ask").style.visibility = "hidden";
		*/
	});
	
	$(".tab.spec").click (function (){
		
		$(".tabs .tab").css("backgroundColor", "#fff");
		$(this).css("backgroundColor", "#ccc");
		
		$(".desc_tab").css("display", "none");
		$(".spec_tab").css("display", "block");
		$(".deal_tab").css("display", "none");
		$(".info_ask").css("display", "none");
	});
	
	$(".tab.dealer").click (function (){
		
		$(".tabs .tab").css("backgroundColor", "#fff");
		$(this).css("backgroundColor", "#ccc");
		
		$(".desc_tab").css("display", "none");
		$(".spec_tab").css("display", "none");
		$(".deal_tab").css("display", "block");
		$(".info_ask").css("display", "none");
		
		if (setup_map) {
			
			setup_map();
		}
		
	});

	$(".tab.info").click (function (){
		
		$(".tabs .tab").css("backgroundColor", "#fff");
		$(this).css("backgroundColor", "#ccc");
		
		$(".desc_tab").css("display", "none");
		$(".spec_tab").css("display", "none");
		$(".deal_tab").css("display", "none");
		$(".info_ask").css("display", "block");
	});
	
	// Dialogs
 	$("a#dialog").fancybox({
 		
 		'frameWidth': 350,
 		'frameHeight': 150,
 		'overlayShow': false
 	});
	
 	// Trigger dialog
	$("a#dialog").trigger('click');
	
});
