$( function() {
	// onclick dropdown
	$(".arrow").hover( function() { //When trigger is clicked...
		$(this).next().fadeIn('fast').show();

		$(this).parent().hover( function() {
		}, function() {
			$(this).parent().find(".dropdown").fadeOut('slow');
			// $(currentRow).removeClass('click');

		});
		return false;
	}, function() {
		//$('.dropdown').hide(); //Drop down the subnav on click
	}
	);
	
	// dropdown parent click
	$(".arrow").click( function() {
		return false;
	});
	
	
	$("#footer a").attr('href','contact.html')
	
	/*
	$("#footer a").click(
		function(){
			window.location=$(this).find("a").attr("href");
		}
	);
	*/
});


