$(function()
{
	
	//feilds with the class removeDefaultValue will be auto cleared of there default value on focus
	$('input.removeDefaultValue').focus( function() {
		if($(this).attr('value') == $(this).attr('value')){
				$(this).attr({value: ""});
			}	
	});
	
	//feilds with the class removeDefaultValue will get there default text repalced if the user leaves it blank
	/*$('input.removeDefaultValue').blur( function() {
		if($(this).attr('value') == undefined){
				$(this).attr({value: $(this).attr('title')});
			}	
	});*/
	
	
	
	$('#enthusiastsClubSmall').submit(function(){
		if("you@example.com" == $("#l187054-187054").attr("value"))
		{
			alert("Please replace you@example.com with your email address.");
			return false;
		}
	});
	
	
});

