$(document).ready(function(){
    
    
    // SHOW/HIDE FUNCTION
    $('#search form').hide();
    $("#search label").click(function () {
        $(this).prev().slideToggle("normal");
        return false;
    });


    // KEYWORD FIELD BLANK ON FOCUS
    // set the default text
	$('input#search_keywords').val($('input#search_keywords').attr('title'));
	
	// clear it out on focus
	$('input#search_keywords').focus(function(){
		var value = $(this).attr('value');
		var title = $(this).attr('title');
		if (value == title) {
			$(this).val("");	
		};
		$(this).addClass("selected");
	});
	// if it's blank then reset back the title attribute
	$('input#search_keywords').blur(function(){
		$(this).removeClass("selected");
		if(!$(this).val().length){
			$('input#search_keywords').val($('input#search_keywords').attr('title'));
		}
	});
		
		
});
