$(document).ready(function(){
							   
	$(document).pngFix();
	
	$('input[type=text], textarea').each(function() { 
	$(this).focus(function() {
	if($(this).val() == this.defaultValue)
	$(this).val("");
	});
	$(this).blur(function() {
	if($(this).val() == "")
	  $(this).val(this.defaultValue);
	});
	});

$('#newsletter_submit').click(function(){		

	var name = $("#name").val();
	var email = $("#ddwhu-ddwhu").val();
	
	if(name == "Your name") {
		return false;
	} else if(email == "Your email") {
		return false;
	}

});


});