function Footer(f) {
	this.f = f;
}

Footer.prototype.width = 600;

Footer.prototype.write = function() {
	document.write("<table class=header width=\"" + this.width + "\"><tr class=footerRow>");
	for (var e in this.f) {
		document.write("<td class=footerCol>");
		this.f[e].write();
		document.write("</td>");
	}
	document.write("</tr></table>");
}


function MainFooter() {
/*
	var h = new Footer([
				new ISLink("images/home_in.gif", "images/home_out.gif", "index.htm"),
				new ISLink("images/weddings_in.gif", "images/weddings_out.gif", "weddings.htm"), 
				new ISLink("images/portraits_in.gif", "images/portraits_out.gif", "portraits.htm"),
				new ISLink("images/artistProfile_in.gif", "images/artistProfile_out.gif", "profile.htm"),
				new ISLink("images/contact_in.gif", "images/contact_out.gif", "contact.htm")
				]);
	h.write();
*/
	document.write("<div class=footer style=\"position:absolute; width:600px; height:25px; top:550px; z-index:1; overflow: hidden; visibility: visible;\"><table width=\"100%\"><tr><td align=\"center\">Berkeley&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CA&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;510.852.4192&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"mailto://inquiry@kristyhardy.com\">inquiry@kristyhardy.com</a></td></tr></table></div>");
	document.write("<div style=\"position:absolute; width:600px; height:25px; top:575px;\"><center><img src=\"images/copyright.gif \" border=\"0\" width=\"600\" height=\"25\"></center></div>");	
}

