$(document).ready(function () {
    $(".detail_block").hide();
    $("#detail_1").show();

    $(".tab_on").click(function () {
        //document.getElementById("tab_1").className = "tab_off no_margin";
        document.getElementById("tab_1").className = "item_attribute white tab_off";
        document.getElementById("tab_2").className = "item_attribute white tab_off";
        document.getElementById("tab_3").className = "item_attribute white tab_off";

        $(".detail_block").hide();
        var strID = this.id.split("_");
        var strContentID = "#detail_" + strID[1];
        $(strContentID).show();

        this.className = "item_attribute white tab_on no_margin";
    });

    $(".tab_off").click(function () {
        //document.getElementById("tab_1").className = "tab_off no_margin";
        document.getElementById("tab_1").className = "item_attribute white tab_off";
        document.getElementById("tab_2").className = "item_attribute white tab_off";
        document.getElementById("tab_3").className = "item_attribute white tab_off";

        $(".detail_block").hide();
        var strID = this.id.split("_");
        var strContentID = "#detail_" + strID[1];
        $(strContentID).show();

        this.className = "item_attribute white tab_on";

    });
});

function openZoom(img) {
    var url = "Zoom.aspx?img=" + img;
    var attrib = "height=680,width=590,resizable=no,scrollbars=no";
    window.open(url, null, attrib);
}         
