	jQuery.noConflict();  
	
    jQuery(document).ready(function() {
        jQuery("#SearchTermsSubmit").click(function() {
            if ((jQuery("#SearchTerms").val() == "Type a name, keyword or postcode")||jQuery("#SearchTerms").val()=="") {
                jQuery("#SearchTerms").val("");
                return false;
            }
        });
        // Define what happens when the textbox comes under focus
        // Remove the watermark class and clear the box
        jQuery("#SearchTerms").focus(function() {
            jQuery(this).filter(function() {
                // We only want this to apply if there's not
                // something actually entered
                return jQuery(this).val() == "" || jQuery(this).val() == "Type a name, keyword or postcode"
            }).removeClass("watermarkOn").val("");
        });
    });

