// slider
var mycontent=new Array()
mycontent[0]='<div class="talentshow">&nbsp;</div>'
mycontent[1]='<h1>Pow wow 2009</h1><p><strong>Visit the Community Events page for photos and videos of our pow-wow!</strong></p>'
mycontent[2]='<div class="store_glide"></div><p>Our phone number is <strong class="big">252-2964</strong>.<br />Business hours are posted below.</p>'
mycontent[3]='<div class="bingo_glide">&nbsp;</div>'
mycontent[4]='<a href="http://www.arrowhead-longplain.com/rezradio/index.php"><div class="antique"></div></a>'
mycontent[5]='<h1>Long Plain Forum</h1><p>The Long Plain Forum is waiting!<br /><a href="http://www.longplainfirstnation.ca/lpfnforum/index.php">Click here to visit</a>.</p>'
mycontent[6]='<h1>What\'s Happening?</h1><p>View the <strong>NEW AND IMPROVED</strong><br /><strong>Long Plain Event Calendar</strong>.<br /><a href="event_calendar.html">Click here</a>'
var i=0
function altercontent(){
if (document.all)
dcontent.innerHTML=mycontent[i];
else if (document.getElementById){
rng = document.createRange();
el = document.getElementById("dcontent");
rng.setStartBefore(el);
htmlFrag = rng.createContextualFragment(mycontent[i]);
while (el.hasChildNodes()) el.removeChild(el.lastChild);
el.appendChild(htmlFrag);}
i=(i==mycontent.length-1)? 0 : i+1
setTimeout("altercontent()", 6500)
}
window.onload=altercontent
