﻿$(
    function () {
        
        jQuery('a[@href^="http://"]').attr('target', '_blank');
        //alert($('.mainnavright ul ul').innerWidth());
        var width = 0;
        $('.AspNet-Menu > li  > ul > li').each(function () {
            width += $(this).outerWidth(true);
        });
        //alert(width);

        $('.mainnavright').attr("style", "left:" + (900 - width) + "px;width:" + (width) + "px;");
        

        if ($('.bodycontents').height() < $('.sidebar').outerHeight()) {
            $('.bodycontents').height($('.sidebar').outerHeight());
        }
    }
)
