$(document).ready(function() {
	
	$(".dropdown").hoverIntent(function(){
		$(this).find("ul").slideDown();
	}, function(){
		$(this).find("ul").fadeOut(500);	
	});
	
	$("#btn-top").topLink({
		min: 600
	});
	
	// iPhone and iPad touch compatibility
	if ('ontouchstart' in document.documentElement) {
		$(".dropdown>a").bind("touchend click", function(e){
			$("#navigation .dropdown ul").fadeOut(500);
			$(this).parent().find("ul").slideDown();
			return false;
		});
		$(".dropdown ul a").bind("touchstart click", function(e){			
			window.location(this.href);
		});
	}

	//Highlights Current Link				   
		
		$("#navigation>li>a").each(function() {
			if(this.href == window.location.href.split("#")[0]) {
				$(this).parent().addClass("current");
			}
		});
});
