if(jQuery) {
	jQuery(function($) {
		// Defaults for searchform
		if($('#searchForm input:text')) {
			$('#searchForm input:text')
				.attr('value', function() {return $(this).attr('title')})
				.focus(function() {
					if($(this).attr('value') === $(this).attr('title')) {$('#searchForm').trigger('reset')};
				})
				.blur(function() {
					if($(this).attr('value') === '' ) { $(this).attr('value', $(this).attr('title')) };
				})
			;
		}
	}); // End jQuery.ready
}
