var total1 = 10;
var counter1 = 0;
var titles= new Array();
var urls= new Array();
var info= new Array();


 


titles[1] = "Home";
urls[1] = "http://www.posedart.com/main.html";
info[1] = "";
titles[2] = "Portfolios";
urls[2] = "http://www.posedart.com/portfolio.html";
info[2] = "";
titles[3] = "Articles";
urls[3] = "http://www.posedart.com/articles.html";
info[3] = "";
titles[4] = "Diagrams";
urls[4] = "http://www.posedart.com/diagrams.html";
info[4] = "";
titles[5] = "Model Info";
urls[5] = "http://www.posedart.com/models.html";
info[5] = "";
titles[6] = "About Us";
urls[6] = "http://www.posedart.com/about.html";
info[6] = "";
titles[7] = "Contact Us";
urls[7] = "http://www.posedart.com/contact.html";
info[7] = "";
titles[8] = "Info";
urls[8] = "http://www.posedart.com/info.html";
info[8] = "";
titles[9] = "Free Stuff";
urls[9] = "http://www.posedart.com/freestuff.html";
info[9] = "";
titles[10] = "Links";
urls[10] = "http://www.posedart.com/links.html";
info[10] = "";

document.writeln("<TABLE CELLPADDING='3' CELLSPACING='0' ALIGN='CENTER'> <TBODY> <TR><TD><FONT COLOR='#E4D8A1' SIZE='-1'>|</FONT></TD>");

for (counter1=1;counter1<=total1;counter1++){
	document.writeln("<TD><A HREF='"+urls[counter1]+"'><FONT COLOR='#E4D8A1' SIZE='-1'>"+titles[counter1]+"</FONT></A></TD><TD><FONT COLOR='#E4D8A1' SIZE='-1'>|</FONT></TD>");
}
document.writeln("</TR> </TBODY> </TABLE>");

