$(document).ready(function(){

////////////////////////////////
	//newsletter
	
	$('input#name').focus(function () { 
		if($(this).val() == 'Your Name'){
			$(this).val('');
		}
    });
	$('input#name').blur(function () { 
		if($(this).val() == ''){
			$(this).val('Your Name');
		}
    });

	$('input#jhutu-jhutu').focus(function () { 
		if($(this).val() == 'Email Address'){
			$(this).val('');
		}
    });
	$('input#jhutu-jhutu').blur(function () { 
		if($(this).val() == ''){
			$(this).val('Email Address');
		}
    });

});
