$(document).ready(function(){

	//Newsletter signup form
	$('form#newsletter input[type=text]').focus(function(){
		if( $(this).val() == 'Enter Your Email' )
			$(this).val('');
	}).blur(function(){
		if( $(this).val() == '' )
			$(this).val('Enter Your Email');
	});
	
});