// JavaScript Document
var howOften = 4; //number often in seconds to rotate
var current = 0; //start the counter at 0
var ns6 = document.getElementById&&!document.all; //detect netscape 6

// place your images, text, etc in the array elements here
var items = new Array();
    items[0]="<a href='http://www.parrishmed.com' target='_blank'><img alt='image1' src='../sponsors/logos140/parish140.png' height='140' width='140' border='0' /></a>";
    items[1]="<a href='http://www.tripadvisor.com/Restaurant_Review-g60751-d513165-Reviews-Valentino_s_New_York_Style_Pizza_Restaurant-Titusville_Florida.html' target='_blank'><img alt='image2' src='../sponsors/logos140/valentinos140.png' height='140' width='140' border='0' /></a>";
	items[2]="<a href='http://www.smiledesignofbrevard.com/' target='_blank'><img alt='image3' src='../sponsors/logos140/gullikson140.png' height='140' width='140' border='0' /></a>";
    items[3]="<a href='http://www.local.com/business/details/titusville-fl/itani-family-pharmacy-120332590/' target='_blank'><img alt='image4' src='../sponsors/logos140/itanifamilypharmacy140.png' height='140' width='140' border='0' /></a>";
	
function rotater() {
    document.getElementById("placeholder").innerHTML = items[current];
    current = (current==items.length-1) ? 0 : current + 1;
    setTimeout("rotater()",howOften*1000);
}

function rotater() {
    if(document.layers) {
        document.placeholderlayer.document.write(items[current]);
        document.placeholderlayer.document.close();
    }
    if(ns6)document.getElementById("placeholderdiv").innerHTML=items[current]
        if(document.all)
            placeholderdiv.innerHTML=items[current];

    current = (current==items.length-1) ? 0 : current + 1; //increment or reset
    setTimeout("rotater()",howOften*1000);
}
window.onload=rotater;

