

jQuery.noConflict();

jQuery(function() {
	jQuery('#supporters_form input[type="text"]').keepDefaults();
	
});


(function($){
	$.fn.keepDefaults = function(){
	this.each(function(i, el){
		var val = $(el).val();
		$(el).bind('focus', {}, function() {
			if($(this).val() == val)
				$(this).val('')
		});
		$(el).bind('blur', {}, function() {
			if($(this).val() == "")
				$(this).val(val);
		});
	});
}
})(jQuery);


