function snapshots() {
var iLoop = 0;
var iImages = "http://www.focuscommunities.com/images/";
var iIcon = new Array;
var iMetaTag = new Array;
var iLink = new Array;
var iVerbiage = new Array;
var iLinkText = new Array;
var iIx = -1;

var iIx = iIx + 1;
iIcon[iIx] = "cal-school.gif";
iMetaTag[iIx] = "School Closings";
iLink[iIx] =  'href="http://www.clickondetroit.com/closings/index.html"' + ' target="_blank"';
iVerbiage[iIx] = "Is your Taylor school having a snow day? [Find out here]!";

var iIx = iIx + 1;
iIcon[iIx] = "cal-money.gif";
iMetaTag[iIx] = "Saveland";
iLink[iIx] =  'href="http://focustaylor.com/businesses/saveland/saveland_weeklyspecial.php"' + ' target="_blank"';
iVerbiage[iIx] = "Fresh [weekly specials from Saveland] every Tuesday!";


var iIx = iIx + 1;
iIcon[iIx] = "cal-youth.gif";
iMetaTag[iIx] = "Don't forget photos!";
iLink[iIx] =  "href='/faces_places'";
iVerbiage[iIx] = "Got photos?? Send them to photos@focustaylor.com.  Check out [Faces and Places] to see our latest photos. </a>";



//
// All SNAPSHOTS are above this point...posting application follows.
//

for (iLoop = 0; iLoop <= iIx; iLoop++)
{
var NewVbg = iVerbiage[iLoop].replace("[","<a " + iLink[iLoop] + ">");
var FinalVbg = NewVbg.replace("]","</a>");									   
document.write('<tr bordercolor="#CCCC99" bgcolor="#F6F6F2">');
document.write('<td width="26" valign="top"><a ' + iLink[iLoop] + '><img src="' + iImages + iIcon[iLoop] + '" alt="' + iMetaTag[iLoop] +'" width="26" height="27" border="0"></a></td>');
document.write('<td valign="top" bordercolor="#CCCC99" class="BodySmall LinkOff">' + FinalVbg + '</td>');
document.write('</tr>');
}
}
