document.write('<div id="holder" style="position:relative; width:770px; height:100px; z-index:1;">');
document.write('<div id="heeder" style="position:absolute; width:770px; height:115px; z-index:3; left: 0px; top: 0px;"><img src="assets/heeder.gif" width="770" height="100" border="0" alt="Johnny Leche\'s Spiff Trailers"></div>');
document.write('<div id="ticker" style="position:absolute; width:250px; height:48px; z-index:2; left: 510px; top: 18px;">');
// Highlighter Scroller II script- By JavaScript Kit (http://www.javascriptkit.com)
// For this and over 400+ free scripts, visit http://www.javascriptkit.com/
// This notice must stay intact


//CONFIGURE MESSAGES AND VARIABLES
var tickercontents=[
'Who knew they were still but making them but check out the new trailer for "The Chronicles of Narnia".',
'Alice is back killing zombies and other things in "Resident Evil: Afterlife"!',
'Stallone\'s got like every action star from<br>the last 30 years in "The Expendables". Check out the trailer!'
]




var tickerwidth="250px"
var tickerheight="48px"
var fontcss="font: bold 12px arial,Verdana; color:black"
var tickdelay=8000 //delay btw messages
var highlightspeed=2 //2 pixels at a time.
var highlightcolor=""
var backdroptextcolor="#FFFFFF"

////Do not edit past this line////////////////

document.write('<style>#highlighterbg a{color:'+backdroptextcolor+'}</style>')
document.write('<div style="position:relative;left:0px;top:0px; width:'+tickerwidth+'; height:'+tickerheight+';'+fontcss+'">')
document.write('<span id="highlighterbg" style="position:absolute;left:0;top:0;color:'+backdroptextcolor+'; width:'+tickerwidth+'; height:'+tickerheight+';padding: 4px"></span><span id="highlighter" style="position:absolute;left:0;top:0;clip:rect(auto auto auto 0px); background-color:'+highlightcolor+'; width:'+tickerwidth+';height:'+tickerheight+';padding: 4px"></span>')
document.write('</div>')

var currentmessage=0
var clipbottom=1

function changetickercontent(){
msgheight=clipbottom=crosstick.offsetHeight
crosstick.style.clip="rect("+msgheight+"px auto auto 0px)"
crosstickbg.innerHTML=tickercontents[currentmessage]
crosstick.innerHTML=tickercontents[currentmessage]
highlightmsg()
}

function highlightmsg(){
//var msgheight=crosstick.offsetHeight
if (clipbottom>0){
clipbottom-=highlightspeed
crosstick.style.clip="rect("+clipbottom+"px auto auto 0px)"
beginclip=setTimeout("highlightmsg()",20)
}
else{
clipbottom=msgheight
clearTimeout(beginclip)
if (currentmessage==tickercontents.length-1) currentmessage=0
else currentmessage++
setTimeout("changetickercontent()",tickdelay)
}
}

function start_ticking(){
crosstickbg=document.getElementById? document.getElementById("highlighterbg") : document.all.highlighterbg
crosstick=document.getElementById? document.getElementById("highlighter") : document.all.highlighter
crosstickParent=crosstick.parentNode? crosstick.parentNode : crosstick.parentElement
if (parseInt(crosstick.offsetHeight)>0)
crosstickParent.style.height=crosstick.offsetHeight+'px'
else
setTimeout("crosstickParent.style.height=crosstick.offsetHeight+'px'",100) //delay for Mozilla's sake
changetickercontent()
}

if (document.all || document.getElementById)
window.onload=start_ticking

document.write('</div>');
document.write('</div>');