/**
 * @author C809907
 */

$(document).ready(function(){
    
    //removes or adds the word 'search'
    $("form[name='f'] input[name='q']").focus(function(){
        $(this).removeClass('regularSearch');
    });
    
    $("form[name='f'] input[name='q']").blur(function(){
        if ($(this).val().length == 0) {
            $(this).addClass('regularSearch');
        }
    });
});