$(function() 
{
	
	//Hook newsletter box in footer
	bind_newsletter_box();

});


//Newsletter box in footer stuff
function bind_newsletter_box()
{
	$('#newsletter-email').focus(	function()
									{
										if ($(this).val() != "Your email address") return;
										$(this).val('');
									});
	
	$('#newsletter-email').blur(	function()
									{
										if ($(this).val() != "") return;
										$(this).val('Your email address');
									});
}




