//<![CDATA[
jQuery.noConflict();
jQuery(document).ready(function($) { //tells WP to recognize the $ variable

    $('input[name=s]').focus(function(){
	if ($(this).val() == 'Search')
            $(this).val('');
    });

    $('input[name=s]').blur(function(){
	if ($(this).val() == '')
            $(this).val('Search');
    });

}); //end document ready functions

/* ]]> */
