<!--

/* First array should contain the directory/filename combination for each page in the section (showroom, in this case)  */
/* see 'subnav.js' for additional info on the specific format of these strings  */

var links = new Array (
	"showroomindex",
	"BPpkg-1-and-2-branded",
	"POPpkg-3-and-4-designs",
	"POPindex",
	"portfolioindex",
	"orderindex",
	"contactindex");

/* Second array contains the visible text in the Side Nav  */
var links_text = new Array (
	"Design Showroom",
	"Package 1 & 2 Branded Designs",
	"Package 3 & 4 Designs",
	"Package 3 & 4 Additional Designs",
	"Client Portfolio",
	"Order Online!",
	"Contact Us");

/* Third array contains the links  */
var links_url = new Array (
	"/showroom/index.htm",
	"/showroom/BP/pkg-1-and-2-branded.htm",
	"/showroom/POP/pkg-3-and-4-designs.htm",
	"/showroom/POP/index.htm",
	"/portfolio/clients/index.htm",
	"/order/index.htm",
	"/contact/index.htm");

/* Fourth array contains the styles that should be applied to each item */
var links_style = new Array ("", "", "", "class=space",  "class=space", "class=order", "class=contact");
// -->