$(function(){
	$("#ea").css("color", "#BFBFBF").val("ENTER EMAIL ADDRESS").bind("focus", function(){
		$(this).val("").unbind("focus").css("color", "#002A89");
	});
	$("a[href^='#']").click(function(event){
		event.preventDefault();
		$.scrollTo($(this).attr("href"), {duration: 1000, offset: {left: 0, top: -60}});
	});
	var section = window.location.pathname;
	if (section != "/") {
		$("a[href^=" + section + "]").addClass("selected");
		$(".gallery a").removeClass("selected");
	}
	
	$(".gallery").click(function(e){
		location.href = $(this).find("a").attr("href");
	});
});
