﻿
function ShowSubMenu()
{
    //SYNTAX: ddtabmenu.definemenu("tab_menu_id", integer OR "auto")
    
    var current_location = window.parent.location.href;
    if (current_location.indexOf('index')!= -1)
        ddtabmenu.definemenu("ddtabs1", 0)             
    else if ((current_location.indexOf('wines')!= -1)||(current_location.indexOf('cases_everyday')!= -1)||(current_location.indexOf('cases_finedining')!= -1)||(current_location.indexOf('cases_other')!= -1)||(current_location.indexOf('completecellar')!= -1)||(current_location.indexOf('prodinfo_wine')!= -1)||(current_location.indexOf('prodinfo_case')!= -1)||(current_location.indexOf('basket')!= -1))
        ddtabmenu.definemenu("ddtabs1", 1) 
    else if (current_location.indexOf('previewcru')!= -1)
        ddtabmenu.definemenu("ddtabs1", 2)            
    else if (current_location.indexOf('gifts')!= -1)
        ddtabmenu.definemenu("ddtabs1", 3)
    else if (current_location.indexOf('tastings')!= -1)
        ddtabmenu.definemenu("ddtabs1", 4)
	else if ((current_location.indexOf('foodandwine')!= -1)||(current_location.indexOf('pairings')!= -1)||(current_location.indexOf('recipes')!= -1)||(current_location.indexOf('wine_dictionary')!= -1))
        ddtabmenu.definemenu("ddtabs1", 5)
	else if ((current_location.indexOf('about')!= -1)||(current_location.indexOf('behindthename')!= -1)||(current_location.indexOf('team')!= -1)||(current_location.indexOf('selectionprocess')!= -1)||(current_location.indexOf('sommeliers')!= -1))
        ddtabmenu.definemenu("ddtabs1", 6)
	else if ((current_location.indexOf('news')!= -1)||(current_location.indexOf('subscribe')!= -1)||(current_location.indexOf('unsubscribe')!= -1))
        ddtabmenu.definemenu("ddtabs1", 7)
	else if (current_location.indexOf('contact')!= -1)
        ddtabmenu.definemenu("ddtabs1", 8)
	
    else
        ddtabmenu.definemenu("ddtabs1", "auto")//initialize Tab Menu #1 with 1st tab selected
}

