$(function() {

    if ($("div.tabbed").length) {
        $("ul.tabs").tabs("div.panes > div");
    }

    if ($("#gm-overlay").length) {
        $("img[rel]").overlay({
            onLoad: function(event) {
                initialize();
            }
        });
    }

    searchTerms.init();
    
    // remove the button text in IE7
    if ($("input[type='submit']").length && $.browser.msie && ($.browser.version.substr(0, 1) === "7")) {
        $("input[type='submit']").attr("value","");
    }

    var p = location.pathname;

    if (p === "/") $(".primary-nav li:first-child a").addClass("in");


});
