/*
Menu Settings
Copyright 2003, Andreas Xydas
 */

//Menu Operation Variables
menunum=0;
menus=new Array();
_d=document;
function addmenu(){menunum++;
menus[menunum]=menu;}function dumpmenus(){mt="<script language=javascript>";for(a=1;a<menus.length;a++){mt+=" menu"+a+"=menus["+a+"];"}mt+="<\/script>";_d.write(mt)}




////////////////////////////////////
// Editable properties START here //
////////////////////////////////////

// Special effect string for IE5.5
	if(navigator.appVersion.indexOf("MSIE 6.0")>0)
	{
		effect = "Fade(duration=0.2);Alpha(style=0,opacity=88);Shadow(color='#0D0E30', Direction=135, Strength=5)"
	}
	else
	{
		effect = "Shadow(color='#0D0E30', Direction=135, Strength=5)"
	}



/*---------------------------------------------
Main Menu Variables
-----------------------------------------------*/
	timegap=500				// The time delay for menus to remain visible
	followspeed=5				// Follow Scrolling speed
	followrate=40				// Follow Scrolling Rate
	suboffset_top=10;			// Sub menu offset Top position 
	suboffset_left=10;			// Sub menu offset Left position



/*---------------------------------------------
Insert Styles Here
-----------------------------------------------*/
	style1=[				// style1 is an array of properties
	"ffffff",					// Mouse Off Font Color **
	"0D0E30",				// Mouse Off Background Color **
	"ffffff",				// Mouse On Font Color **
	"cccccc",				// Mouse On Background Color
	"0D0E30",				// Menu Border Color 
	11,						// Font Size in pixels
	"normal",				// Font Style (italic or normal)
	"bold",					// Font Weight (bold or normal)
	"Verdana, Arial",			// Font Name
	2,					// Menu Item Padding
	"images/arrowr.gif",			// Sub Menu Image (Leave this blank if not needed)
	,					// 3D Border & Separator bar
	"",				// 3D High Color
	"",				// 3D Low Color
	,					// Current Page Item Font Color (leave this blank to disable)
	,					// Current Page Item Background Color (leave this blank to disable)
	"",			// Top Bar image (Leave this blank to disable)
	"",				// Menu Header Font Color (Leave blank if headers are not needed)
	"",				// Menu Header Background Color (Leave blank if headers are not needed)
	]


/*---------------------------------------------
Menu Item Settings
-----------------------------------------------*/
	addmenu(menu=[			// This is the array that contains your menu properties and details
	"mainmenu",			// Menu Name - This is needed in order for the menu to be called
	3,				// Menu Top - The Top position of the menu in pixels
	200,				// Menu Left - The Left position of the menu in pixels
	(screen.width-435)/4,		// Menu Width - Menus width in pixels
	2,				// Menu Border Width 
	"center",			// Screen Position - here you can use "center;left;right;middle;top;bottom" 
	style1,				// Properties Array - this is set higher up, as above
	1,				// Always Visible - allows the menu item to be visible at all time (1=on/0=off)
	"center",				// Alignment - values valid here are: left, right or center
	effect,				// Filter - Text variable for setting transitional effects on menu activation
	,				// Tells the menu item to follow the user down the screen (visible at all times) 						// (1=on/0=off)
	1, 				// Horizontal Menu - Tells the menu to become horizontal instead of top to 							// bottom style (1=on/0=off)
	,				// Keep Alive until the user moves over another menu or clicks elsewhere (1=on/0=off)
	,				// Position of TOP sub image left:center:right
	,				// Set the Overall Width of Horizontal Menu to 100% and height to the specified 
	,				// Right To Left - Used in Hebrew for example. (1=on/0=off)
	,				// Open the Menus OnClick - leave blank for OnMouseover (1=on/0=off)
	,				// ID of the div you want to hide on MouseOver (useful for hiding form elements)
	,				// Reserved for future use
	,				// Reserved for future use
	,				// Reserved for future use




/**********************************************************************************************
**********************************************************************************************

                              Main Menu Settings  

**********************************************************************************************
**********************************************************************************************/


// "Description Text", "URL", "Alternate URL", "Status", "Separator Bar"
,"Home","/index.html",,"Back to the home page",0 	
,"Products","show-menu=villas",,"",0
,"Help","show-menu=tips",,"",0
,"Contact Us","show-menu=cyprus",,"",0
])



/*---------------------------------------------
Specific Sub Menu Settings
----------------------------------------------*/

	addmenu(menu=["villas",
	,,150,1,"",style1,,"left",effect,,,,,,,,,,,,
	,"<img src=/images/newsimage.gif border=0>&nbsp;DVD Section","/dvd/dvd.html",,,1
	,"<img src=/images/newsimage.gif border=0>&nbsp;Softwares","/software/softwares.html",,,1
	,"<img src=/images/newsimage.gif border=0>&nbsp;HTML Templates","",,,1
	,"<img src=/images/newsimage.gif border=0>&nbsp;eCart Solution","",,,1
	,"<img src=/images/newsimage.gif border=0>&nbsp;As Seen On TV","/asSeenOnTV/seenOnTV.html",,,1
	,"<img src=/images/newsimage.gif border=0>&nbsp;Tutorials","",,,1
	])


	addmenu(menu=["tips",,,150,1,,style1,0,"left",effect,0,,,,,,,,,,,
	,"<img src=/images/newsimage.gif border=0>&nbsp;Advanced Search","/search.html",,,1
	,"<img src=/images/newsimage.gif border=0>&nbsp;Shipping Policy","/shipping.html",,,1
	,"<img src=/images/newsimage.gif border=0>&nbsp;Security Policy","/security.html",,,1
	,"<img src=/images/newsimage.gif border=0>&nbsp;Refund Policy","/refund.html",,,1
	,"<img src=/images/newsimage.gif border=0>&nbsp;Return Policy","/refund.html",,,1
	])


	addmenu(menu=["cyprus",
	,,150,1,"",style1,,"left",effect,,,,,,,,,,,,
	,"<img src=/images/newsimage.gif border=0>&nbsp;Contact Us...","/contact.html",,,1
	])



dumpmenus()