
function link(n,u){
this.name = n;
this.url = u;
}


function men(){

var m = new Array();
m[1] = new link("Welcome","index.htm");
m[2] = new link("Services","services.htm");
m[3] = new link("About Us","about_us.htm");
m[4] = new link("Contact Us","contact_us.htm");
m[5] = new link("Submit a Claim","submit.htm");
m[6] = new link("Email Us","mailto:Larry@gpici.com");

index = "<span class=\"regWhiteBoldText\">";

l = m.length - 1;


for(i=1; i<=l; i++)
{
	
index += "<a href=\""+m[i].url+"\"><b><font color=white>"+m[i].name+"</font></b></a>";

if(i < l) { index += "<font color=white>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font>"; }

}

index = index + "</span>";


head.innerHTML = index;

// Set Page Title
WebSiteTitle ="Great Plains Inspection Company, Inc"
document.title = WebSiteTitle;
this.title = WebSiteTitle;

}




