////////////////////////////////////////////////////////
//  Clear default input box values
//	
jQuery.fn.clearDefault = function(){
		return this.each(function(){
			var default_value = jQuery(this).val();
			jQuery(this).focus(function(){
				if (jQuery(this).val() == default_value) jQuery(this).val("");
			});
			jQuery(this).blur(function(){
				if (jQuery(this).val() == "") jQuery(this).val(default_value);
			});
		 });
};


jQuery(document).ready(function(jQuery){
//Apply Input Clearing Fix	
	jQuery('footer input').clearDefault();
	

});
