$(document).ready(function() {
	$("#nav.nav-js").removeClass("nav-js");
	$("#nav li").hoverIntent({
		over: function () {
			$(this).addClass("nav-hover");
		},
		out: function () {
			$(this).removeClass("nav-hover");
		},
		sensitivity: 25
	});
	$("#newsletter div input").focus(function(){
		if ($(this).val() == "enter your email address here...") {
			$(this).val("");
		}
	});
	$("#newsletter div input").blur(function(){
		if ($(this).val() == "") {
			$(this).val("enter your email address here...");
		}
	});
});
