$(document).ready(function() {
	var default_value = "Enter your email address here";
	$('#bltyuh-bltyuh').focus(function() {
        if(this.value == default_value) {
            this.value = '';
        }
    });
	$('#bltyuh-bltyuh').blur(function() {
        if(this.value == '') {
            this.value = default_value;
        }
    });
	
	
	
	
	//$.validator.setDefaults({
	//	submitHandler: function() { alert("submitted!"); }
	//});
	$("#subForm").validate();

	
	
	
	
	
});


