﻿         
// Horizontal tabs
var horizontalTabs = new tabSet("horizontalTabs",
									"tabs",
									"",
									"",
									undefined,
									undefined,
									"visibleContent"); //array of info about tabs

function initHorizontalTabs() {
    horizontalTabs.add("home",           "Home",           "window.location.href = 'index.html?tab=home&target=welcome.htm&currency='+currency");
    horizontalTabs.add("products",       "Products",       "window.location.href = 'index.html?tab=products&target=products.htm&currency='+currency");
    horizontalTabs.add("testimonials",   "Testimonials",   "window.location.href = 'index.html?tab=testimonials&target=testimonials.html&currency='+currency");
    horizontalTabs.add("about",          "About Us",       "window.location.href = 'index.html?tab=about&target=LLT.html&currency='+currency", undefined, undefined, aboutUsTabs, 20, 15);
    horizontalTabs.add("down-syndrome",  "Down Syndrome",  "window.location.href = 'index.html?tab=down-syndrome&target=down-syndrome-focus.htm&currency='+currency");
    horizontalTabs.add("autism",         "Autism",         "window.location.href = 'index.html?tab=autism&target=autism-focus.htm&currency='+currency");
    horizontalTabs.add("apraxia",        "Apraxia",        "window.location.href = 'index.html?tab=apraxia&target=apraxia-focus.htm&currency='+currency");
//    horizontalTabs.add("late-talkers", "Late Talkers",   "window.location.href = 'index.html?tab=late-talkers&target=late-talkers-focus.htm';");
//    horizontalTabs.add("classroom",    "Classroom",      "window.location.href = 'index.html?tab=classroom&target=classroom-focus.htm';");
    horizontalTabs.createHTML();
}

var aboutUsTabs = new tabSet("aboutUsTabs",
                             "subTabs",
                             "",
                             "",
							 undefined,
							 undefined,
							 "visibleContent"); //array of info about
function initAboutUsTabs() {
    aboutUsTabs.add("llt",       "Learning Language Together&trade;", "window.location.href = 'index.html?tab=about&target=LLT.html'");
    aboutUsTabs.add("pts",       "Phoneme Touch &amp; Say&trade;",    "window.location.href = 'index.html?tab=products&target=PTS-program.htm'");
    aboutUsTabs.add("jill",      "Who is Jill Hicks",                 "window.location.href = 'index.html?tab=about&target=jill.html'");
//    aboutUsTabs.add("workshops", "Workshops",                         "window.location.href = 'index.html?tab=about&target=workshops.html'");
    aboutUsTabs.add("articles",  "Articles",                          "window.location.href = 'index.html?tab=about&target=articles.html'");
    aboutUsTabs.add("contact",   "Contact Us",                        "window.location.href = 'index.html?tab=about&target=contact.html'");
 //   aboutUsTabs.add("mailing",   "Join our Mailing List",             "window.location=\'address-start.php\';");
 
}

var workshopTabs = new tabSet("workshopTabs",
                             "workshopTabs",
                             "",
                             "",
							 undefined,
							 undefined,
							 "visibleContent"); //array of info about
function initWorkshopTabs() {
    workshopTabs.add("upcoming",         "Upcoming Workshops",                                             "window.location.href = 'index.html?tab=about&target=upcomingWorkshops.html'");
    workshopTabs.add("ptsWorkshop",      "Phoneme Touch &amp; Say&trade; Workshop",                        "window.location.href = 'index.html?tab=about&target=PTSWDescription.html'");
    workshopTabs.add("dsWorkshop",       "Teaching Students with Down Syndrome",                           "window.location.href = 'index.html?tab=about&target=TSWDSWDescription.html'");
    workshopTabs.add("dsAndPTSWorkshop", "Phoneme Touch &amp; Say&trade; and Students with Down Syndrome", "window.location.href = 'index.html?tab=about&target=TwoDayPTSDSDescription.html'");
}
var productTabs = new tabSet("productTabs",
                             "productTabs",
                             "",
                             "",
							 undefined,
							 undefined,
							 "visibleContent"); //array of info about
function initProductTabs() {
    productTabs.add("speech",   "Speech",   "speech.htm",   "window.location.href = 'index.html?tab=products&target=speech.htm'");
    productTabs.add("language", "Language", "language.htm", "window.location.href = 'index.html?tab=products&target=language.htm'");
    productTabs.add("literacy", "Literacy", "literacy.htm", "window.location.href = 'index.html?tab=products&target=literacy.htm'");
}

