// This is the Javascript configuration file for the javascript menus used on the site
// The program used is called COOLjsMenuPro and can be found at http://javascript.cooldev.com
//
// Changes are made to this file in order to add or subtract items from the menus.
// No changes should be made to coolmenupro.js (the program itself).
//
// Any changes to this file must be made with great care as the syntaqx is very exact 
//     (for example, an out of place comma can cause the menus to stop working)
//
// ------------------------------------------------------------------------------------
//
//The quoted value in the line below should point to the root directory for the site:
//
BLUE_URL = 'http://www.smithmarketing.com/blueribbon/';
// BLUE_URL = '';
//
BLANK_IMAGE =  BLUE_URL + 'images/b.gif';
//
// The sections below sets overall style information (in combination with items in the CSS)
//
var MAIN_STYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	css:{
		ON:"coolMainOn",		// CSS class for items
		OVER:"coolMainOver"	// CSS class  for item which is under mouse
	} 
};
//
// Below is the actual menu structure.  If you must make any changes, please keep the following in mind:
//        1. MAKE A BACKUP COPY BEFORE ANY CHANGES ARE MADE - errors will cause the menus to stop working
//        2. The most common changes will be to add/subtract/move menu items.  Remember:
//                - each {code: ...} line creates a menu item
//                - every line, except the last line in each section ends with a comma
//                - each menu item has a cell height of 25 (size:[25,x])... 
//                     in order to keep Internet Explorer happy, the table cell containing the menu  
//                        must be sized to fit the menu - add/subtract from the cell height as needed
//        3. Documentation can be found at http://javascript.cooldev.com
//
var MENU_ITEMS_LOCATIONS = [
	{pos:'relative', itemoff:[28,0], leveloff:[28,0], style:MAIN_STYLE, size:[29,87]},
	{code:" ", format:{ image: BLUE_URL + "images/Blue_Locations.gif", 
			oimage: BLUE_URL + "images/Blue_Locations-over.gif", imgsize:[29,87]},
		sub:[
			{leveloff:[28,0], style:MAIN_STYLE, size:[29,87]},
			{code:" ", format:{ image: BLUE_URL + "images/Woodstock.gif", 
				oimage: BLUE_URL + "images/Woodstock-over.gif", imgsize:[29,87]},
				url:  BLUE_URL + "pages/woodstock.html"},
			{code:" ", format:{ image: BLUE_URL + "images/Algonquin.gif", 
				oimage: BLUE_URL + "images/Algonquin-over.gif", imgsize:[29,87]},
				url:  BLUE_URL + "pages/algonquin.html"}
		]
	}
	];
var MENU_ITEMS_PRODUCTS = [
	{pos:'relative', itemoff:[28,0], leveloff:[28,0], style:MAIN_STYLE, size:[29,76]},
	{code:" ", format:{ image: BLUE_URL + "images/Blue_Products.gif", 
			oimage: BLUE_URL + "images/Blue_Products-over.gif", imgsize:[29,76]},
		sub:[
			{leveloff:[28,-25], style:MAIN_STYLE, size:[29,127]},
			{code:" ", format:{ image: BLUE_URL + "images/Windows.gif", 
				oimage: BLUE_URL + "images/Windows-over.gif", imgsize:[29,127]},
				url:  BLUE_URL + "pages/windows.html"},
			{code:" ", format:{ image: BLUE_URL + "images/Doors.gif", 
				oimage: BLUE_URL + "images/Doors-over.gif", imgsize:[29,127]},
				url:  BLUE_URL + "pages/doors.html"},
			{code:" ", format:{ image: BLUE_URL + "images/Millwork.gif", 
				oimage: BLUE_URL + "images/Millwork-over.gif", imgsize:[29,127]},
				url:  BLUE_URL + "pages/millwork.html"},
			{code:" ", format:{ image: BLUE_URL + "images/Kitchens.gif", 
				oimage: BLUE_URL + "images/Kitchens-over.gif", imgsize:[29,127]},
				sub:[
					{leveloff:[0,120], style:MAIN_STYLE, size:[29,93]},
					{code:" ", format:{ image: BLUE_URL + "images/Overview.gif", 
						oimage: BLUE_URL + "images/Overview-over.gif", imgsize:[29,93]},
						url:  BLUE_URL + "pages/kitchens.html"},
					{code:" ", format:{ image: BLUE_URL + "images/Cabinets.gif", 
						oimage: BLUE_URL + "images/Cabinets-over.gif", imgsize:[29,93]},
						url:  BLUE_URL + "pages/cabinets.html"},
					{code:" ", format:{ image: BLUE_URL + "images/Sinks.gif", 
						oimage: BLUE_URL + "images/Sinks-over.gif", imgsize:[29,93]},
						url:  BLUE_URL + "pages/sinks.html"}
				]	
			}			
		]
	}
	];
