$(document).ready(function() { 
    //Handle jquery change event for IE
    if ($.browser.msie) {
    	$("#enews_name").click(function() {
    	    this.blur();
    	    this.focus();
    	});
    }
    $('#enews_name').focus(function() {
	if($(this).val() == 'name') {
	    $(this).val('');
	}
    });

    $('#enews_email').focus(function() {
	if($(this).val() == 'email address') {
	    $(this).val('');
	}
    });

   $('#enews_name').blur(function() {
	if($(this).val() == '') {
	    $(this).val('name');
	}
    });

    $('#enews_email').blur(function() {
	if($(this).val() == '') {
	    $(this).val('email address');
	}
    });


});