﻿function _ShowSubPage(subPageId)
{
    $('.productSubPageContent').hide();
    _IfHiddenUnhideImages();
    $('div[id$='+subPageId+'-div]').show();
    $('.list-menu-products ul li').removeClass('selected-menu');
    $('.list-menu-products ul li a[id="'+subPageId+'_link"]').parents("li").addClass('selected-menu');
}

function _IfHiddenUnhideImages()
{
    if ($("img[name]").attr("name") != $("img[name]").attr("src"))
    {
        $("img[name]").each(function(i){this.src=this.name;});
    }
}

$(function() {
    var subpage = "overview";
    if (window.location.hash.length > 0) {
        subpage = window.location.hash.substring(1);
        // We check against the valid options because Google tracking code puts "#something" in the URL and
        // that was screwing the "default" page display.
        if (subpage != "overview" && subpage != "benefits" && subpage != "features" && subpage != "video") {
            subpage = "overview";
        }
    }
    if (subpage.toLowerCase() == "video") {
        $("#lnkProductVideo").click();
    } else {
        _ShowSubPage(subpage);
    }
});