// JavaScript Rollover Menu Code
// Menu Data File
// Menu Name: main

// CODE Copyright (c) 2002 WebDesignery.com
// Written by Darien Brown (dobrown@webdesignery.com)
// This source may be used by any party as long as the above
// copyright and this notice remains intact. Please document
// any changes to the code below.

// *_MenuPreloadFlag
//     Has the specified menu been preloaded?
// *_MenuUrlBase
//     Base for image urls - directory where images are stored
// *_MenuButtonList
//     List of strings for all button names in menu

var main_MenuPreloadFlag = false;
var main_MenuUrlBase = "images/main_menu/";
var main_MenuButtonList = new Array(
	"profile",
	"portfolio",
	"contact",
	"links"
);

