
$(document).ready(function () {

    $('.overlay:empty').remove();
    setPage();
    var urlArray = document.location.toString().split("/");
    var arr = hrefString.split('/');
    //    alert(arr);
    if (location.pathname.toLowerCase().indexOf("/products") == 0) {
        $(".menuLinks").first().addClass("open");
    }
    if (location.pathname.toLowerCase().indexOf("/showcase") == 0) {
        $(".menuLinks").last().addClass("open");
    }


    $(".column").equalHeights();

    $("#contactForm").validate();

    if ($.browser.msie && $.browser.version.substring(0, 1) === '6') {
        //  alert("ie6");
        $("#size-stylesheet").attr("href", "/resources/css/main/narrow.css").delay(5000);


    }
    else {
        //  alert("some other browser");
    }
});



