jQuery(function(){
    runMenu();
});
jQuery(window).load(function(){
    setSidebarHeight();
});
function setSidebarHeight()
{
    if ( jQuery('#primary').height() < jQuery('#container').height() )
    {
        jQuery('#primary').height(jQuery('#container').height() + 5)
    }
}
function runMenu()
{
    jQuery('.menu ul').addClass('sf-menu');
    jQuery('ul.sf-menu').superfish({
        autoArrows: false
});
    jQuery('#top-navigation div.menu').width(jQuery('ul.sf-menu').width() + 2);
}


