// rand.js; Random image for corp logos: SFYMCA 08/09
var mess = new Array(
'<a href="http://www.celebritysandwich.com/" target="_blank"><img src="images/celebsandwich.gif" width="206" height="80" border="0" alt="Celebrity Sandwich"></a>',
'<a href="http://www.clearchannel.com/" target="_blank"><img src="images/clear-channel.jpg" width="91" height="90" border="0" alt="Clear Channel Communications"></a>',
'<a href="http://www.comcast.com/" target="_blank"><img src="images/comcast.jpg" width="211" height="80" border="0" alt="Comcast"></a>',
'<a href="http://www.debloiselectric.com/" target="_blank"><img src="images/deblois.jpg" width="356" height="66" border="0" alt="DeBloise Electric"></a>',
'<a href="http://www.seacoastoralsurgery.com/oral_surgeon_portsmouth/index.html" target="_blank"><img src="images/detolla.jpg" width="325" height="75" border="0" alt="Detolla Dental at Seacoast Oral Surgery"></a>',
'<a href="http://www.fagray.com/" target="_blank"><img src="images/f-a-gray.jpg" width="241" height="75" border="0" alt="FA Gray"></a>',
'<a href="http://www.jcpenny.com/" target="_blank"><img src="images/jcpenney.png" width="95" height="95" border="0" alt="JC Penny"></a>',
'<a href="http://www.libertymutual.com/" target="_blank"><img src="images/libertymutual.jpg" width="188" height="90" border="0" alt="Liberty Mutual"></a>',
'<a href="http://www.oceanbank.com/" target=_blank><img src="images/oceanbank.png" width="144" height="90" border="0" alt="Ocean Bank"></a>',
'<a href="http://www.portsmouthhospital.com/" target=_blank"><img src="images/portshosp.jpg" width="94" height="95" border="0" alt="Portsmouth Regional Hospital"></a>',
'<a href="http://www.seacoastonline.com/" target="_blank"><img src="images/smg.jpg" width="113" height="90" border="0" alt="Seacoast Media Group"></a>',
'<img src="images/tri_rentall.gif" width="227" height="80" border="0" alt="Tri Rentall">');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);

