$(document).ready(function(){
/*
 * 	Modified on: 12-01-2009
 * 			 by: dan@creeksmarts.com
 * 
 * 	- Commented out all input value removal on page load
 * 	- because it was not allowing checkbox forms on alerts page to function properly
 * 	- form values ended up blank even when checked on post back
 
	$('input, textarea').focus(function() {
		value=$(this).val();
		$(this).attr("value","");
	});
	$('input, textarea').blur(function() {
		if($(this).val()=="") {
			$(this).val(value);
		}
	});
*/
});/*CLOSING BRACKETS*/