$(function() {
    var topbar = $("#parsely-topwrap");
    topbar.bind("click", function(evt) {
        evt.preventDefault();
        location.href = "/";
    });
    if (!jQuery.browser.msie) {
        $("#topbar ul li.nav").each(function() {
           $(this).append($('<div class="glower"></div>'));
        });
        $("#topbar ul li a").hover(function over() {
            $(this).parent().find(".glower").addClass("active");
        }, function out() {
            $(this).parent().find(".glower").removeClass("active");
        });
    }
});
