
$(function() {
    $("div#product_imgSupport div.product_image a, div#product_imgSupport a.viewLarge").magipic({
        imageToExpandFrom: "div.product_image a img",
        viewLargeLinkSelector: "div#product_imgSupport a.viewLarge",
        loadingImage: "/gothemes/img/common/ajax-loader.gif",
        popupBorderWidth: 2,
        closeImage: "/gothemes/img/common/close_link.png"
    });
});  


function rotateBrands(brandCount) {
    var startNum = 0;    
    $("div#logoContainer div:gt(" + startNum + "):lt(" + (startNum+4) + ")").show();
    if (brandCount > 4) {
        setInterval(function() {
            $("div#logoContainer div:gt(" + startNum + "):lt(" + (startNum+4) + ")").fadeOut(1000);
            startNum += 4;
            if (startNum >= brandCount) startNum = 0;
            $("div#logoContainer div:gt(" + startNum + "):lt(" + (startNum+4) + ")").fadeIn(1000);
        }, 4000);
    }
}

<!--
    function bookmark(url,title){
      if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
      window.external.AddFavorite(url,title);
      } else if (navigator.appName == "Netscape") {
        window.sidebar.addPanel(title,url,"");
      } else {
        alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
      }
    }
//-->

$(function() {
    $("a#quickSearchBtn").click(function() {
        document.location = "Shop_Search_Results.aspx?bizsearchterms=" + $("input#quickSearch").val();
        return false;
    });
});
