/* ********************************************************************
*  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",	"Ospitalità",	"tabCont0") 
tabProp[1] = new Array("tabMenu1",	"Itinerari",		"tabCont1") 
tabProp[2] = new Array("tabMenu2",	"Eventi",		"tabCont2") 
//tabProp[3] = new Array("tabMenu3",	"Eventi",	"tabCont3") 
//tabProp[4] = new Array("tabMenu4",	"Caption",	"tabCont4") 
//tabProp[5] = new Array("tabMenu5",	"Caption",	"tabCont5") 
//tabProp[6] = new Array("tabMenu6",	"Caption",	"tabCont6") 


// Set-up Parameters
var menuBgColorOff		= "#FFFFFF";						//Un-selected tabs colour
var menuBgColorOn		= "#ECE1BB";						//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 		= "650px";							//Content window width
var contentHeight 		= "160px";							//Content window  height
var contentFontFamily 	= "Arial, Helvetica";	//Content window font family
var contentFontSize		= "13px";							//Content window font size
var contentFontColor	= "#605940";						//Content window font colour
var contentPadding		= "12px";							//Content window padding
