/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


/*  
 * This will replace the "Search" text in the search box when the 
 * user clicks it - will replace with search when nothing is 
 * entered - and will not clear the box if anything other
 * than "Search" is the value of the input box.
 * 
 */
$(document).ready(function(){
    $("#search_input").focus(function () { 
        if($(this).val() == "Search..."){
          $(this).val('');
        }
    });
    $("#search_input").blur(function () { 
        if($(this).val() == ""){
            $(this).val("Search...");
        }
    });
 });