<!--
//Array Function
function makeArray(){
var args = makeArray.arguments;
	for (var i = 0; i < args.length; i++) {
	this[i] = args[i];
	}
this.length = args.length;
}

//This array holds the descriptions and names of the pages.
var pages = new makeArray("Click here to go directly to the Artool Template or Rail product you want to check out! ! !",
	"",
	"Freehand Airbrush Templates - The Essential Seven",
	"FH-1 - endorsed by Eddie Young",
	"FH-2 - endorsed by Eddie Young",
	"FH-3 - endorsed by Richard Montoya",
	"FH-4 - endorsed by Richard Montoya",
	"FH-5 - endorsed by Andrea Mistretta",
	"FH-6 - endorsed by Andrea Mistretta",
	"FH-7 - endorsed by Gabe McCubbin",
	"Skull Master Templates designed by Craig Fraser",
	"Son of Skull Master Templates designed by Craig Fraser",
	"Curse of Skull Master Templates designed by Craig Fraser",
	"Return of Skull Master Templates designed by Craig Fraser",
	"Flame Master Templates designed by Julian 'Mr. J' Braet",
	"",
	"MultiRails",
	"CuttingRails",
	"Architectural Scales",
	"",
	"Airbrush Body Art",
	"Temporary Tattoos",
	"Temporary Tattoos Gallery",
	"",
	"Nail Master Products",
	"Nail Master Colors",
	"Nail Master Shields",
	"Nail Master Design Wheels",
	"",
	"Using Freehand Airbrush Templates",
	"Eddie Young's Instructional Video",
	"Using ARTOOL's many tools - featured how-to!!");

//This array holds the URLs of the pages
var urls = new makeArray("http://www.medea-artool.com/index.htm",
	"http://www.medea-artool.com/artool.htm",
	"http://www.arttalk.com/artool/seven.htm",
	"http://www.arttalk.com/artool/eyoung.htm",
	"http://www.arttalk.com/artool/eyoung.htm",
	"http://www.arttalk.com/artool/montoya.htm",
	"http://www.arttalk.com/artool/montoya.htm",
	"http://www.arttalk.com/artool/andrea.htm",
	"http://www.arttalk.com/artool/andrea.htm",
	"http://www.arttalk.com/artool/mccubbin.htm",
	"http://www.arttalk.com/artool/new/skull-master.htm",
	"http://www.medea-artool.com/sonofskullmaster/index.htm",
	"http://www.medea-artool.com/artool/CurseOfSkullmaster/CurseOfSkullmaster.htm",
	"http://www.medea-artool.com/artool/ReturnOfSkullMaster/index.htm",
	"http://www.arttalk.com/artool/FlameMaster/flamemasterfreehandtemplates.htm",
	"http://www.arttalk.com/artool/seven.htm",
	"http://www.arttalk.com/artool/multirail.htm",
	"http://www.arttalk.com/artool/cutrail.htm",
	"http://www.arttalk.com/artool/scales.htm",
	"http://www.arttalk.com/artool/seven.htm",
	"http://www.medea-artool.com/bodyart/Products/BodyArtHome.htm",
	"http://www.medea-artool.com/bodyart/Products/BodyArtHome.htm",
	"http://www.arttalk.com/bodyart/gallery.htm",
	"http://www.arttalk.com/artool/seven.htm",
	"http://www.medea-artool.com/nailart/nailart.htm",
	"http://www.medea-artool.com/nailart/nailcolors.htm",
	"http://www.medea-artool.com/nailart/nailtemplates.htm",
	"http://www.medea-artool.com/nailart/nailwheels.htm",
	"http://www.arttalk.com/artool/seven.htm",
	"http://www.arttalk.com/artool/help.htm",
	"http://www.arttalk.com/artool/help.htm",
	"http://www.medea-artool.com/artool/uses.htm");

//This function determines which page is selected and goes to it
function goPage(form) {
	i = form.menu.selectedIndex;
		if (i != 0) {
		window.location.href = urls[i];
	}
}
//-->
