// JavaScript Document


var howOften = 10; //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.beaverheadmotors.com'><img src='Ads/karltyler.jpg' target='_blank' style='width:200px;height:200px;' /></a><p style='width:200px;'>If you are looking for a new or used car, truck or SUV in Dillon, Beaverhead Motors family owned, friendly and professional staff is standing by to help.</p>"; //a linked image
	 items[1]="<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0\" width=\"200\" height=\"200\"><param name=movie value=\"/Ads/foundation.swf\"><param name=loop value=false><param name=quality value=high><embed src=\"Ads/foundation.swf\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"200\" height=\"200\"></embed></object><p style='width:200px;'>Through the years, Barrett Hospital Foundation has continued to generate financial support and improve community health, and quality of life for Beaverhead County.</p>"; //a linked image
    items[2]="<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0\" width=\"200\" height=\"200\"><param name=movie value=\"/Ads/NewFlashAd.swf\"><param name=loop value=false><param name=quality value=high><embed src=\"Ads/NewFlashAd.swf\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"200\" height=\"200\"></embed></object><p style='width:200px;'>Dillon's University of Montana Western is unique in public higher education offering the innovative Experience One where students take a single class at a time.</p>"; //a linked swf
	 items[3]="<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0\" width=\"200\" height=\"200\"><param name=movie value=\"/Ads/Barret.swf\"><param name=loop value=false><param name=quality value=high><embed src=\"Ads/Barret.swf\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"200\" height=\"200\"></embed></object><p style='width:200px;'>Barrett Hospital & Healthcare has provided quality medical care for cowboys and cowgirls of all ages for over 80 years.</p>"; //a linked swf
	 items[4]="<a href='http://www.kdbmkbev.com/'><img src='Ads/KBDM.jpg' target='_blank' style='width:200px;height:200px;' /></a><p style='width:200px;'>KDBM-KBEV, the voice of Southwest Montana, broadcasts a signal that covers Beaverhead and Madison Counties 24 Hours a day, every day.</p>"; //a linked image
	


function func1() {
    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("func1()",howOften*1000);
}
//–>
