$(document).ready(function(){ 
	
/* Forms
--------------------------------------------- */

	$('#yourEmail').focus(function() { 
		if ($(this).val() == 'Your email address here...')
	    $(this).val('').focus(); //clear out the title field on first click...
	});

});
