if (document.images) {
image0 = new Image;
image1 = new Image;
image2 = new Image;
image3 = new Image;
image0.src = 'graphics/rollovers\/news.jpg';
image1.src = 'graphics/rollovers\/forms.jpg';
image2.src = 'graphics/rollovers\/step.jpg';
image3.src = 'graphics/rollovers\/city.jpg';
} else {
image0 = '';
image1 = '';
image2 = '';
image3 = '';
document.rollimg = '';
}

var cap = ['The police departments weekly news release.  News release page includes current month and prior two months.',
'The City golf cart permit application and downtown parking permit application can be found on this page.',
'Information on the Special Traffic Enforcement Program, including schedules, can be found on this page.',
'Information about the City of Forest City and surrounding area<br/> can be found on this page.'];

function rollover(n) {
document.rollimg.src = window['image'+n].src;
document.getElementById('caption').innerHTML
 = cap[n];
}
