$(document).ready(function(){
    $('#thetopnav').load( "submenu.html",null,function(){
        $("ul li").hover(function() {
            $(this).addClass("show_children");
        }, function() {
            $(this).removeClass("show_children");
        });
    });

    $("#searchq").focus(function() {
        if( this.value == "Search_" ) {
            this.value = "";
        }
    }).blur(function() {
        if( !this.value.length ) {
            this.value = "Search_";
        }
    });
});