
var tickercontent=new Array()
tickercontent[0]='&nbsp;&nbsp;&nbsp;<a href="category.asp">Click here to view our range of vehicle rentals</a>'
tickercontent[1]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=10&prod=18">Daihatsu Charade - £22.00  Includes VAT & Insurance</a>'

tickercontent[2]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=10&prod=19">Daihatsu Sirion - £28.00  Including VAT & Insurance</a>'

tickercontent[3]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=10&prod=20">Proton Gen-2 - £35.00  Including VAT & Insurance</a>'

tickercontent[4]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=10&prod=21">Daihatsu Materia - £38.00  Includes VAT & Insurance</a>'

tickercontent[5]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=2&prod=1">Small Van - PRICES FROM £18.50</a>'

tickercontent[6]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=2&prod=2">Medium Van - PRICES FROM £18.50</a>'

tickercontent[7]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=2&prod=3">Long Wheel Base Van - PRICES FROM £23.60</a>'

tickercontent[8]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=2&prod=4">Luton Van - PRICES FROM £23.60</a>'

tickercontent[9]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=2&prod=5">Long Wheel Base Luton - PRICES FROM £29.66</a>'

tickercontent[10]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=2&prod=6">Luton Van with Tail Lift - PRICES FROM £34.00</a>'

tickercontent[11]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=2&prod=7">Transit Dropside - PRICES FROM £27.00</a>'

tickercontent[12]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=9&prod=8">Small Van - PRICES FROM £18.50</a>'

tickercontent[13]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=9&prod=9">Medium Van - PRICES FROM £18.50</a>'

tickercontent[14]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=9&prod=10">Long Wheel Base Van - PRICES FROM £26.61</a>'

tickercontent[15]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=9&prod=11">Luton Van - PRICES FROM £26.60</a>'

tickercontent[16]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=9&prod=12">Long Wheel Base Luton - PRICES FROM £29.66</a>'

tickercontent[17]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=9&prod=13">Luton Van with Tail Lift - PRICES FROM £34.00</a>'

tickercontent[18]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=9&prod=14">Transit Dropside - PRICES FROM £27.00</a>'

tickercontent[19]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=11&prod=15">7.5 tonne Box with/without Tail Lift  - PRICES FROM £80.00</a>'

tickercontent[20]='&nbsp;&nbsp;&nbsp;<a href="product.asp?cat=11&prod=16">Curtain Sider - PRICES FROM £69.07</a>'


/***********************************************
* DHTML Ticker script- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

function domticker(content, divId, divClass, delay, fadeornot){
this.content=content
this.tickerid=divId //ID of master ticker div. Message is contained inside first child of ticker div
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over ticker (and pause it if it is)
this.pointer=1
this.opacitystring=(typeof fadeornot!="undefined")? "width: 100%; filter:progid:DXImageTransform.Microsoft.alpha(opacity=100); -moz-opacity: 1" : ""
if (this.opacitystring!="") this.delay+=500 //add 1/2 sec to account for fade effect, if enabled
this.opacitysetting=0.2 //Opacity value when reset. Internal use.
document.write('<div id="'+divId+'" class="'+divClass+'"><div style="'+this.opacitystring+'">'+content[0]+'</div></div>')
var instanceOfTicker=this
setTimeout(function(){instanceOfTicker.initialize()}, delay)
}

domticker.prototype.initialize=function(){
var instanceOfTicker=this
this.contentdiv=document.getElementById(this.tickerid).firstChild //div of inner content that holds the messages
document.getElementById(this.tickerid).onmouseover=function(){instanceOfTicker.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){instanceOfTicker.mouseoverBol=0}
this.rotatemsg()
}

domticker.prototype.rotatemsg=function(){
var instanceOfTicker=this
if (this.mouseoverBol==1) //if mouse is currently over ticker, do nothing (pause it)
setTimeout(function(){instanceOfTicker.rotatemsg()}, 100)
else{
this.fadetransition("reset") //FADE EFFECT- RESET OPACITY
this.contentdiv.innerHTML=this.content[this.pointer]
this.fadetimer1=setInterval(function(){instanceOfTicker.fadetransition('up', 'fadetimer1')}, 100) //FADE EFFECT- PLAY IT
this.pointer=(this.pointer<this.content.length-1)? this.pointer+1 : 0
setTimeout(function(){instanceOfTicker.rotatemsg()}, this.delay) //update container
}
}

// -------------------------------------------------------------------
// fadetransition()- cross browser fade method for IE5.5+ and Mozilla/Firefox
// -------------------------------------------------------------------

domticker.prototype.fadetransition=function(fadetype, timerid){
var contentdiv=this.contentdiv
if (fadetype=="reset")
this.opacitysetting=0.2
if (contentdiv.filters && contentdiv.filters[0]){
if (typeof contentdiv.filters[0].opacity=="number") //IE6+
contentdiv.filters[0].opacity=this.opacitysetting*100
else //IE 5.5
contentdiv.style.filter="alpha(opacity="+this.opacitysetting*100+")"
}
else if (typeof contentdiv.style.MozOpacity!="undefined" && this.opacitystring!=""){
contentdiv.style.MozOpacity=this.opacitysetting
}
else
this.opacitysetting=1
if (fadetype=="up")
this.opacitysetting+=0.2
if (fadetype=="up" && this.opacitysetting>=1)
clearInterval(this[timerid])
}
