/*
This file contains rotating ads on the index (homepage).
Adding new ads is fairly self-explanatory -- Make sure to keep the numbers consecutive, starting with 0.
Make sure there are no double quotes in the text string unless they are escaped  --  \" 
Each new string (ad code) should be on one line
HTML tag attributes must be in single quotes  --  <a href='http....'>
*/

head = new Array();
head[0] = "<a href='index.shtml'><img src='images/header1.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[1] = "<a href='index.shtml'><img src='images/header2.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[2] = "<a href='index.shtml'><img src='images/header3.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[3] = "<a href='index.shtml'><img src='images/header4.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[4] = "<a href='index.shtml'><img src='images/header5.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[5] = "<a href='index.shtml'><img src='images/header6.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[6] = "<a href='index.shtml'><img src='images/header7.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[7] = "<a href='index.shtml'><img src='images/header8.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[8] = "<a href='index.shtml'><img src='images/header9.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[9] = "<a href='index.shtml'><img src='images/header10.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[10] = "<a href='index.shtml'><img src='images/header11.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[11] = "<a href='index.shtml'><img src='images/header12.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[12] = "<a href='index.shtml'><img src='images/header13.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[13] = "<a href='index.shtml'><img src='images/header14.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";

head[14] = "<a href='index.shtml'><img src='images/header15.jpg' width='775' height='100' border='0' hspace='2' align='left'/></a>";