jQuery.fn.resetDefaultValue = function() {
	function _clearDefaultValue() {
		var _$ = $(this);
		if ( _$.val() == this.defaultValue ) { _$.val(''); }
		$(this).removeClass("quiet");
	};
	function _resetDefaultValue() {
		var _$ = $(this);
		if ( _$.val() == '' ) { _$.val(this.defaultValue); $(this).addClass("quiet"); }
	};
	return this.click(_clearDefaultValue).focus(_clearDefaultValue).blur(_resetDefaultValue);
}

$(document).ready(function() {
	$("#contact_form_wrapper input[type=text], #contact_form_wrapper textarea").resetDefaultValue();
	$('#subs li:first-child, body#home .inner ul li:first-child').css({ 'border-top' : 'none' });
});