<!--
function drawLogo() {
	// This module draws the logo in the upper left corner of the page with a link back to the home page
	document.write('<a href="index.html" target="_top">');
	document.write('<img border="0" src="images/logo-graphic.gif" alt="Go to Home Page" width="150" height="80"></a>');
}

function drawBanner() {
	// This is an optional banner or text area that you can use to add additional information
	document.write('<center><img border="0" src="images/banner_art.gif" width="550" height="80"></center>');
}

function mainMenu() {
	// This is the main menu module for the menu down the left side of the page
	// To change the menu, change the value of mn to the max number of items in the menu
	// assign the variables men[x] as the menu name and loc[x] as the destination page
	// set the menu/web page variables
	mn = 6;								// EDIT: set the maxinum number of menu items
	men=new Array(mn);				// dimension the array for the menu items
	loc=new Array(mn)					// dimension the array for the menu targets
	men[0]="Home";					// EDIT: first item in the menu
	loc[0]="index.html";				// EDIT: first target page in the menu
	men[1]="Galleries";				// EDIT: remaining items in the menu list
	loc[1]="gallery.htm";
	men[2]="Personal Info";
	loc[2]="x"
	men[3]="About the Artist";
	loc[3]="artist.htm";
	men[4]="x";
	men[5]="Contact";
	loc[5]="mailto:info@sagebrusharts.com";

	// write the menu items as links using a for--while loop
	document.write('<br>');
	for (var i=0; i<mn; i++) {
		if(men[i]=="x") {
			document.write('&nbsp;<br>');
		} else {	
		if(loc[i]=="x") {
			document.write('<br><font face="Arial" size="2"><b>'+men[i]+'</b></font><br>');
		
		} else {

	// The following 4 lines provide the dynamic roll-over effect in the main menu		
	//	document.write('<a href="'+loc[i]+'" target="_top" dynamicanimation="fpAnimformatRolloverFP1"');
	//	document.write('fprolloverstyle="font-family: Arial; color: #FF0000; font-weight: bold" ');
	//	document.write('onmouseover="rollIn(this)" onmouseout="rollOut(this)" language="Javascript1.2">');
	//	document.write('<font face="Arial" size="2"><b>'+men[i]+'</b></font></a><br>');
		document.write('<a href="'+loc[i]+'" target="_top" ');
		
		document.write('language="Javascript1.2">');
		document.write('<font face="Arial" size="2"><b>'+men[i]+'</b></font></a><br>');
	}
	}
	}
}

function coInfo() {
	// Contact information. This module contains your company name and address with a copyright statement
	// To change the number of address items, change the Array (info) to the max number of items in the menu
	// assign the variables info[x] as the address items you wish to include. Note that info[0] is an email address and not a description item
	// Note that some of the items here are fixed, such as "Contact me" and the copyright info.
	// set the address item variables
	info=new Array(4);								// EDIT: set the maxinum number of address items
	info[0]="jan_rothell@yahoo.com";					// EDIT: mailing address
	info[1]="Art Director";							// EDIT: person line in address
	info[2]="Sage Brush Arts"; 					// EDIT: company name in address
	info[3]="PO Box 2190";							// EDIT: PO box/street address
	info[4]="Los Lunas, NM 87031";				// EDIT: city, state, zip
	
	document.write('<p>&nbsp;</p>');
	document.write('<p><font face="Arial" size="1"><b><font color="#800000">'+info[1]+'</font></b><br>');
	document.write(info[2]+'<br>'+info[3]+'<br>'+info[4]+'<br></font></p>');
	document.write('<p>&nbsp;</p><p><font face="Arial" size="1">© Copyright 2004<br>Sage Brush Arts<br>All rights reserved.</font></p>');
}

//-->
				
				
