// MASTHEAD MENUS CONTENT VARIABLES - v.1.1
// COPYRIGHT SUN MICROSYSTEMS INC.
// QUESTIONS? webdesign -at- sun.com

// pacifico link set v1

// translation for See All link at the end of each menu
seeall = "See All";

// set this to the location of your local css & im directories
cssdir = "/css";
imdir = "/im";

// sub menu width
mwidth = 150;

// array for all masthead menus
var navmenu = new Array();

// menus are organized using a two number decimel delineated system (1.2)
// the first number indicates which main topic link the menu belongs to.
// the second number indicates the order the sub topic link appears in the menu.

// the values for each item are then organized by a | delineated system (Link Name|URL)
// item X.0 MUST alway be the exact name of the main topic link as hardcoded in
// the masthead and must include a link that is the also the same.

// if the first main topic link was Products and it's URL was /products/ then then you
// would start the products menu with... 
//
// navmenu['1.0'] = 'Products|/products/';

// if the main topic link is not a link to another page, but simply the title of your
// menu (i.e. Select A Topic) then you would set the [X.0] item to "|". this way the
// See All Item is not created at the bottom of the menu. like...
//
// navmenu['1.0'] = '|';

navmenu['1.0'] = '|';
navmenu['1.1'] = 'Overview|/webdesign/design/';
navmenu['1.2'] = 'Page Classes|/webdesign/design/pageclass.html';
navmenu['1.3'] = 'Pacifico Architecture|/webdesign/design/sunia.html';
navmenu['1.4'] = 'Developers Architecture|/webdesign/design/devia.html';
navmenu['1.5'] = 'I Want to Build A Page|/webdesign/design/buildapage.html';
navmenu['1.6'] = 'Which template should I use?|/webdesign/design/buildapage_which.html';

navmenu['2.0'] = '|';
navmenu['2.1'] = 'Components|/cgi-bin/sun/webdesign/index_components.cgi';
navmenu['2.2'] = 'Sun Templates|/cgi-bin/sun/webdesign/index_templates.cgi';
navmenu['2.3'] = 'Developers Templates|/cgi-bin/sun/webdesign/index_templates.cgi?set=developers';

navmenu['3.0'] = '|';
navmenu['3.1'] = 'Colors|/webdesign/guidelines/color.html';
navmenu['3.2'] = 'HTML|/webdesign/guidelines/coding.html';
navmenu['3.3'] = 'Type &amp; Trademarks|/webdesign/guidelines/type.html';
navmenu['3.4'] = 'PDFs|/webdesign/guidelines/pdf.html';
navmenu['3.5'] = 'Graphics|/webdesign/guidelines/graphics.html';
navmenu['3.6'] = 'Scripting|/webdesign/guidelines/scripting.html';
navmenu['3.7'] = 'Meta Tags|/webdesign/guidelines/metatags.html';
navmenu['3.8'] = 'Multimedia|/webdesign/guidelines/flash.html';

navmenu['4.0'] = '|';
navmenu['4.1'] = 'Banners|/cgi-bin/sun/webdesign/index_banners.cgi';
navmenu['4.2'] = 'Homepage Kits|/cgi-bin/sun/webdesign/index_homepage.cgi';
navmenu['4.3'] = 'Graphics Library|/cgi-bin/sun/webdesign/index_graphics.cgi';
navmenu['4.4'] = 'CSS|/webdesign/assets/css.html';
navmenu['4.5'] = 'Javascript|/webdesign/assets/js.html';
navmenu['4.6'] = 'Icons &amp; Images|/webdesign/assets/icons.html';
navmenu['4.7'] = 'Favicons|/webdesign/assets/favicon.html';
navmenu['4.8'] = 'Global Assets Request|/webdesign/assets/request.html';


// extra functions for /webdesign

function openPopup(url,name,width,height,resizable,scrollbars,menubar,toolbar,location,directories,status) {	
	popup = window.open(url, name, 'width=' + width + ',height=' + height + ',resizable=' + resizable + ',scrollbars=' + scrollbars	+ ',menubar=' + menubar + ',toolbar=' + toolbar + ',location=' + location + ',directories=' + directories + ',status=' + status);
	popup.focus();
}


