
/* ********************************************************************
*  Toggle Tab Menus - © 2004 - 2006 Baldean Media Services.           *
*  Get the full source code at http://www.baldean.com/devzone/        *
*  Version 3.0, release 03/01/2006. This note must remain intact.     *
******************************************************************** */

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",	"Performance",	"tabCont0") 
tabProp[1] = new Array("tabMenu1",	"Style",		"tabCont1") 
tabProp[2] = new Array("tabMenu2",	"Accessories",		"tabCont2") 
  


// Set-up Parameters
var menuBgColorOff		= "#FFFFFF";						//Un-selected tabs colour
var menuBgColorOn		= "#F7F7F7";						//Selected tab colour

var menuBorderColor		= "#949C9C";						//Border colour
var menuWidth			= "120px";							//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			= "0px";							//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 	= "1px 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		= "#0F00A0";						//Font Colour for current menu

var contentWidth 		= "638px";							//Content window width
var contentHeight 		= "450px";							//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



function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
 
