var rotating_interval=600
var bannerTopPosition=15
var bannerLeftPosition=244
var sponsor=new Array()
var i_sponsor=0
var randomvalue
rotating_interval=rotating_interval*1000
// banner code for Hysteria Productions
sponsor[i_sponsor]='<a href="http://home.ozonline.com.au/hysteria/" target="_blank"><img src="http://www.malamute.cc/banners/hysteria.gif" width="468" height="60" alt="" border="0"></a>'
i_sponsor++
// banner code for The Distinct Smell of Red
sponsor[i_sponsor]='<A HREF="http://www.malamute.cc/dsor/index.htm" TARGET="_blank"><IMG SRC="http://www.malamute.cc/banners/dsor_large.gif" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>'
i_sponsor++
// banner code for Thunderbubble
sponsor[i_sponsor]='<a href="http://www.thunderbubble.com/" target="_blank"><img src="http://www.malamute.cc/banners/thunderbubble.gif" width="468" height="60" alt="" border="0"></a>'
i_sponsor++
// banner code for Malamute Entertainment
sponsor[i_sponsor]='<A HREF="http://www.malamute.cc/index.htm" TARGET="_blank"><IMG SRC="http://www.malamute.cc/banners/meentertainment.gif" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>'
i_sponsor++
// banner code for The Wire Factory
sponsor[i_sponsor]='<A HREF="http://www.thewirefactory.com/" TARGET="_blank"><IMG SRC="http://www.malamute.cc/banners/wirefactory.gif" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>'
i_sponsor++
// banner code for Meat Insomnia
sponsor[i_sponsor]='<A HREF="http://www.meat-insomnia.com/" TARGET="_blank"><IMG SRC="http://www.malamute.cc/banners/meatinsomnia.jpg" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>'
i_sponsor++
// banner code for RomanStyle
sponsor[i_sponsor]='<A HREF="http://www.romanstylefilms.com/" TARGET="_blank"><IMG SRC="http://www.malamute.cc/banners/romanstyle.gif" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>'
i_sponsor++
// banner code for ShadeofDay
sponsor[i_sponsor]='<A HREF="http://www.shadesofday.com/" TARGET="_blank"><IMG SRC="http://www.ineedhits.com/images/banners4/37343.gif" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>'
i_sponsor++
// banner code for Cinedictum
sponsor[i_sponsor]='<A HREF="http://cinedictum.com/index.phtml" TARGET="_blank"><IMG SRC="http://www.malamute.cc/banners/cinedictum_banner.gif" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>'
i_sponsor++
// banner code for Revival Entertainment
sponsor[i_sponsor]='<A HREF="http://www.revivalentertainment.com/" TARGET="_blank"><IMG SRC="http://www.malamute.cc/banners/revival.gif" BORDER="0" WIDTH="468" HEIGHT="60" ALT=""></A>'
i_sponsor++
function positionbanner() {
    if (document.all) {
        document.all.banner.style.posTop=bannerTopPosition
		document.all.banner.style.posLeft=bannerLeftPosition
    }
    if (document.layers) {
        document.banner.top=bannerTopPosition
		document.banner.left=bannerLeftPosition
    }
    showbanner()
}

function showbanner() {
    randomvalue=Math.round((sponsor.length-1)*Math.random())
	var content=sponsor[randomvalue]
    if (document.all) {
        banner.innerHTML=content
    }
    if (document.layers) {
        document.banner.document.write(content)
		document.banner.document.close()
    }
    setTimeout("showbanner()",rotating_interval)
}
document.write('<DIV id="banner" style="position:absolute">&nbsp;</DIV>')
document.close()

window.onload=positionbanner