	$(document).ready(function() {
		
		$("ul.pages li:first").addClass('first');		
		$("ul.subnav").append('<li class="subnav-footer">&nbsp;</li>');
	
		$("ul.nav li").hover(hoverOn,hoverOff);
	
		$(".newsletter-input").focus(function() {
			if( this.value == this.defaultValue ) {
				this.value = "";
			}
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
		});
	
	
	});	
	
	function hoverOn(){
		$(this).addClass("hover");
	}
	function hoverOff(){
		$(this).removeClass("hover");
	}
