// JavaScript Document

// Global Constants
webfxMenuBarIndent              = 40;
webfxMenuUseHover = true;
webfxMenuImagePath = "/scripts/xmenus/";
webfxMenuHideTime				= 200;
webfxMenuShowTime				= 250;

var rootPath = "http://www.carversonline.com";

// CONSTRUCTOR PARAMETERS
// new webfxMenuItem(sText, sHref, sToolTip, oSubMenu)
// new webfxMenuButton(sText, sHref, sToolTip, oSubMenu)

// TOP MENU BAR FOR CARVERSONLINE MAIN PAGES


var jnrAbout = new webfxMenu;
	jnrAbout.add(new webfxMenuItem("About Us", rootPath + "/carverjnr/about.php", "About the Carver Jnrs (Richard & Andrea)"));
	jnrAbout.add(new webfxMenuItem("Our Heritage", rootPath + "/about.php", "Read of our Missionary Heritage"));

var jnrNews = new webfxMenu;
	jnrNews.add(new webfxMenuItem("Latest Newsletter", rootPath + "/carverjnr/latest.php", "Read our Latest Newsletter"));
	jnrNews.add(new webfxMenuItem("Newsletter Archives", rootPath + "/carverjnr/archive/index.php", "View our archive of old Newsletters"));

var TopBar = new webfxMenuBar;
	TopBar.add(new webfxMenuButton("Carversonline Home", rootPath + "/index.php", "Return to the Carversonline Home Page", null));
	TopBar.add(new webfxMenuButton("About Us", null, null, jnrAbout));
	TopBar.add(new webfxMenuButton("Contact Us", rootPath + "/carverjnr/contact.php", "Contact Richard & Andrea Carver", null));
	TopBar.add(new webfxMenuButton("Photo Album", rootPath + "/coppermine/index.php?cat=12", "View our Family Photo Album", null));
    TopBar.add(new webfxMenuButton("Newsletters", null, null, jnrNews));
//    TopBar.add(new WebFXMenuButton("Richard's Blog", null, null, "/carverjnr/blog/index.php"));
    TopBar.add(new febfxMenuButton("Support Us", null, "/carverjnr/support/index.php", null));


// LHS Menus

