$(function() {
    init();
});
function init() {
    $("#shoppingBag").click(function() {
        window.location.replace("/shoppingcart.asp");
    });
    $(".modal").colorbox();
    $(".articleBox").colorbox({inline:true, href:"#article",innerWidth:670});
    $(".smallIframeModal").colorbox({iframe:true, innerWidth:"420px;", innerHeight:"300px"})
    $(".iframeModal").colorbox({iframe:true, innerWidth:"740px;", innerHeight:"300px"})
    
    //if ($.browser.msie) {   // ie
        if ($("#leftBanner").length > 0) {
            $("#leftBanner").css("height", ($("#container").height() - 30) + "px");
        }
    //}
}
