﻿var currentTab = 1;
var tabs = ['tab1', 'tab2', 'tab3', 'tab4', 'tab5', 'tab6', 'tab7', 'tab8', 'tab9', 'tab10'];

function ChangeImage(path) {
    if (path == null || path == '') return;
    $("#box-product").fadeOut('slow', function() {
        $(this).html('<img src="../../Content/Images/tools/detail/' + path + '" />').fadeIn('slow');
    });
}
function ActiveTab(index) {
    if (currentTab == index) return;
    currentTab = index;

    for (i = 0; i < tabs.length; i++) {
        //active
        if (i + 1 == index) {
            $('#' + tabs[i]).html('<img style="padding-right:8px" src="../../Content/Images/tools/detail/tabs/' + tabs[i] + '_on.gif"/>');
            $('#' + tabs[i] + '_detail').css('display', 'block');
        }
        //normal tab
        else {
            $('#' + tabs[i]).html('<img style="padding-right:8px" src="../../Content/Images/tools/detail/tabs/' 
                + tabs[i] + '_off.gif" onmouseover="this.src=\'../../Content/Images/tools/detail/tabs/' 
                + tabs[i] + '_on.gif\'" onmouseout="this.src=\'../../Content/Images/tools/detail/tabs/' + tabs[i] + '_off.gif\'"/>');
            $('#' + tabs[i] + '_detail').css('display', 'none');
        }
    }
}

function ViewVideo(name) {
    window.open("/Content/Videos/Video.aspx?f=" + name, "myWindow", "status = no, location = no,height = 340, width = 415, resizable = no");
}

function ShowPopup()
{
    window.open('/Home/MoreInfo', 'WhatDoIGet', 'height=675,width=530');
} 