﻿// JScript File

var tabProp = new Array() 
/*
    Tab Menu properties: 
	Add new tab menus using this convention
	tabProp[No] = new Array("tabMenuNo",	"tabCaption",	"tabContNo") 
*/
tabProp[0] = new Array("tabMenu0",	"Hardware",	"tabCont0") 
tabProp[1] = new Array("tabMenu1",	"Software", "tabCont1") 
tabProp[2] = new Array("tabMenu2",	"Services", "tabCont2") 


// Set-up Parameters
var menuBgColorOff		= "transparent";						//Un-selected tabs colour
var menuBgColorOn		= "transparent";						//Selected tab colour

var menuBorderColor		= "transparent";						//Border colour
var menuWidth			= "140px";							//Tab Menu width (same width as tab image in css file)
var menuHeight			= "24px";							//Tab Menu height (same height as tab image in css file)
var menuSpacing			= "1px";							//Tab Menu spacing
var menuLeftOffset		= "20px";							//Offset first Tab Menu
var menuSelected		= 0;								//Selected Tab Menu by default: 0, 1, ...
var menuBehavior		= 0;								//NEW: 0=onClick; 1=onMouserOver
var menuRememberLast	= 1;								//NEW: 0=No; 1=Yes Remember last selected menu, requires cookies
var menuBorderStyle 	= "0px solid";						//Do not change
var menuBorderStyleH 	= "0px solid";						//Do not change
var menuVerifyWidth		= 1;								//Check to see if menus overflow content width

var menuFontFamily 		= "Arial, Helvetica, sans-serif";	//Font Family for tab menus
var menuFontSize		= "13px";							//Font Size for tab menus
var menuFontColorOff	= "#333333";						//Font Colour for un-selected tab menus
var menuFontColorOn		= "#18347B";						//Font Colour for current menu

var contentWidth 		= "500px";							//Content window width
var contentHeight 		= "203px";							//Content window  height
var contentFontFamily 	= "Arial, Helvetica, sans-serif";	//Content window font family
var contentFontSize		= "13px";							//Content window font size
var contentFontColor	= "#000000";						//Content window font colour
var contentPadding		= "4px";							//Content window padding
