/*
Author: Joe Tan (joetan54@gmail.com)
*/
jQuery(function($) { 
	$('input[type=text]:not(.noclear)').focus(function() {
		if ($(this).attr('defaultValue') == $(this).val()) $(this).val('')
	});
});
var $ = jQuery