// JavaScript Document
$(function(){
		   
	$('#mastHead .watermarkSearch').focus(function() {
		$(this).filter(function() {
			// We only want this to apply if there's not
			// something actually entered
			return $(this).val() == '' || $(this).val() == 'e.g. velvet'
		}).removeClass("watermarkOn").val('');
	});
	$('#mastHead .watermarkSearch').blur(function() {
		$(this).filter(function() {
			// We only want this to apply if there's not
			// something actually entered
			return $(this).val() == ''
		}).addClass('watermarkOn').val('e.g. velvet');
	});
	
}); // End Document Load
