jQuery( document ).ready( function($) {

	// Subscribe form
	if ( $( "#sidebar li#text-400570991" ).length ) {
		$( "#sidebar li#text-400570991 form label" ).hide();
		$( "#sidebar li#text-400570991 form input#subscribe2-email" ).val( "Enter your email" ).blur( function() {
			if ( !$(this).val() ) $( this ).val( "Enter your email" );
		}).focus( function() {
			if ( $(this).val() == "Enter your email" ) $( this ).val( "" );
		});;
	}

});
