$(function() {
	
	$("input#testingforspam").focus( function() {if ($(this).val()=="Is fire hot or cold?") {$(this).val("");}}).blur( function() {if ($(this).val()=="") {$(this).val("Is fire hot or cold?");}}); //
	
	/* bind form using 'ajaxForm' 
    $('#form_enter').ajaxForm({
		target: '#comments',
    	//success: function(data) { }
	});*/
	
});
