/* ------------- DropDown Menu LINK and IMAGE Data ------------------ */

//	Modify following five lines to customize your menu
var   tdColor = "#fefefe"; // menu item text color, hexidecimal
var tdBgColor = "#993366"; // menu item background color, hexidecimal
var   hlColor = "#ffff00"; // highlight text color, hexidecimal
var hlBgColor = "#cc6699"; // highlight background color, hexidecimal
var cellWidth = "120"      // width of sub-menu drop lists, in pixels
//	After change, modify same values in your 'menu_style.css' file

/*
 * MouseOver Images: (If Used)
 *     three images can be used but the first two are required for MouseOvers,
 *     these use the numbers and extensions as shown for multiple image
 *     functionality. The third image is optional.
 *  normal   = PICPATH/IMAGENAME-0.gif
 *  hover    = PICPATH/IMAGENAME-1.gif
 *  selected = PICPATH/IMAGENAME-2.gif
 */
var imgs = "images/"; // common image directory

/* MouseOver image preloader for each navigation image (if images are used).
 * "pics" = Image details for image-swaps, 3 per image. "name","width","height"
 * All are comma separated and quoted.
 */
var pics = new Array(
	"map", "430", "270",
	"home", "59", "20",
	"mapsearch", "96", "20",
	"otherareas", "101", "20",
	"justlisted", "94", "20",
	"justsold", "87", "20",
	"aboutme", "87", "20",
	"aboutrichmond", "145", "20",
	"links", "60", "20"
);


/* MAIN and SUB-MEMU Details
 * All 'url_' variables should have a full path web address. Omit these
 * if a link is not needed for the item.
 *
 * When images are used for main menu (declared in the mainMenu call),
 * then three new variables are needed:
 *  'pic_' = full web path and file name of the image (omit number + extension)
 *           for values below use only -> pic_... = "IMAGENAME"
 *  'wth_' = pixel width of the image
 *  'hgt_' = pixel height of the image
 */
td_1 = "Home"; url_1 = "./";
pic_1 = "home"; wth_1 = "59"; hgt_1 = "20";

td_2 = "Map Search"; url_2 = "map-search.html";
pic_2 = "mapsearch"; wth_2 = "96"; hgt_2 = "20";
	td_2_1 = "AREA MAP"; url_2_1 = "#";
		td_2_1_1 = "Area1"; url_2_1_1 = "#";
		td_2_1_2 = "Area2"; url_2_1_2 = "#";
		td_2_1_3 = "Area3"; url_2_1_3 = "#";
	td_2_2 = "FEATURED BUILDINGS MAP"; url_2_2 = "#";
		td_2_2_1 = "Featured 1"; url_2_2_1 = "#";
		td_2_2_2 = "Featured 2"; url_2_2_2 = "#";
		td_2_2_3 = "Featured 3"; url_2_2_3 = "#";
	td_2_3 = "ELEMENTARY SCHOOLD MAP"; url_2_3 = "#";
		td_2_3_1 = "Elementary 1"; url_2_3_1 = "#";
		td_2_3_2 = "Elementary 2"; url_2_3_2 = "#";
		td_2_3_3 = "Elementary 3"; url_2_3_3 = "#";
	td_2_4 = "SECONDARY SCHOOLS MAP"; url_2_4 = "#";
		td_2_4_1 = "Secondary 1"; url_2_4_1 = "#";
		td_2_4_2 = "Secondary 2"; url_2_4_2 = "#";
		td_2_4_3 = "Secondary 3"; url_2_4_3 = "#";
	td_2_5 = "BUILDINGS LIST"; url_2_5 = "#";
		td_2_5_1 = "List 1"; url_2_5_1 = "#";
		td_2_5_2 = "List 2"; url_2_5_2 = "#";
		td_2_5_3 = "List 3"; url_2_5_3 = "#";

td_3 = "Other Areas"; url_3 = "other-areas.html";
pic_3 = "otherareas"; wth_3 = "101"; hgt_3 = "20";

td_4 = "Just Listed"; url_4 = "just-listed.html";
pic_4 = "justlisted"; wth_4 = "94"; hgt_4 = "20";

td_5 = "Just Sold"; url_5 = "just-sold.html";
pic_5 = "justsold"; wth_5 = "87"; hgt_5 = "20";

td_6 = "About Me"; url_6 = "about-me.html";
pic_6 = "aboutme"; wth_6 = "87"; hgt_6 = "20";
	td_6_1 = "BIOGRAPHY"; url_6_1 = "#";
	td_6_2 = "CONTACT ME"; url_6_2 = "#";
	td_6_3 = "SUTTON"; url_6_3 = "#";
	td_6_4 = "TESTIMONIALS"; url_6_4 = "#";
	td_6_5 = "REFER A FRIEND"; url_6_5 = "#";

td_7 = "About Richmond"; url_7 = "about-richmond.html";
pic_7 = "aboutrichmond"; wth_7 = "145"; hgt_7 = "20";
	td_7_1 = "FOR SELLERS"; url_7_1 = "#";
	td_7_2 = "FOR BUYERS"; url_7_2 = "#";

td_8 = "Links"; url_8 = "links.html";
pic_8 = "links"; wth_8 = "60"; hgt_8 = "20";

