function preValue( a, b ){
	var toSet = a;
	var val = b;
	if ( $( toSet ) ) {
		if ($( toSet ).val() == '') {
			$( toSet ).val( val );
			$( toSet ).css( {'color': '#666'});
		}
		$( toSet ).focus( function() {
			if ($( toSet ).val() == val) {
				$( toSet ).val( '' );
				$( toSet ).css( {'color': '#000'});
			}
		})
		$( toSet ).blur( function() {
			if ($( toSet ).val() == '') {
				$( toSet ).val( val ) ;
				$( toSet ).css( {'color': '#666'});
			}
		})
		return true;
	} else {
		return false;
	}
}
