$(document).ready(function(){
		$('ul.sitemap li:has(ul)').addClass('dropdown');
		
		$(".sitemap>li").hover(function () {
				$(this).addClass('activeDrop');
				$("ul",this).hide();
				$("ul",this).slideDown("medium");
			},function(){
				$(this).removeClass('activeDrop');
				$("ul",this).hide();
			}
			);

	
	
	
	checkHash();



});

	function checkHash() {
	//alert(window.location.hash);
	var windowHash = window.location.hash; 
		if (windowHash == "#contactSlider"){
			$("#contactBtn a").trigger("click");
		}
		
	}

	/*function checkHash() {
		var thisUrl = window.location;
		thisUrl = thisUrl.toString();
		//var checkContact = thisUrl.indexOf("#contactForm");
		//var checkAppt = thisUrl.indexOf("#appointmentForm");
if(checkContact > -1) {
	$('.contactBtn').trigger("click");		
} //else if (checkAppt > -1){
	//$('.appointmentButton').trigger("click");	}
	}*/

