/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function() {

    var search_text = 'Search Forum';

    $('#search').focus(function()
    {
        if( $('#search').val() == search_text )
         
            $('#search').val('');
    } );

    $('#search').blur(function()
    {
        if( $('#search').val() == '' )
        {
            $('#search').val(search_text);
        }
    } );
});
