/**********************************************************************
Cross browser Marquee script- © Dynamic Drive (www.dynamicdrive.com)
HEAVILY EDITED -- DO NOT REPLACE WITH THE ORIGINAL!  MONIQUE WPP WATER 
POLO PLANET
**********************************************************************/

//Specify the marquee's width (in pixels)
var marqueewidthH="680px"
//Specify the marquee's height
var marqueeheightH="16px"
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeedH=2
//configure background color:
var marqueebgcolorH="#547EBC"
//Pause marquee onMousever (0=no. 1=yes)?
var pauseitH=1

//Specify the marquee's content (don't delete <div style="white-space:nowrap"> tag)
//Keep all content on ONE line, and backslash any single quotations (ie: 
//that\'s great):

var marqueecontentH='<div style="white-space: nowrap"><font face="Arial" color="#FFFFFF">If you are looking for a big opportunity, seek out a big problem.&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp; H. Jackson Brown </font></div>'


////NO NEED TO EDIT BELOW THIS LINE////////////
marqueespeedH=(document.all)? marqueespeedH : Math.max(1, 
marqueespeedH-1) //slow speed down by 1 for NS
var copyspeedH=marqueespeedH
var pausespeedH=(pauseitH==0)? copyspeedH: 0
var iedomH=document.all||document.getElementById

if (iedomH)
document.write('<span id="marqtemp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+marqueecontentH+'</span>')
var actualwidthH=''
var cross_marqueeH, ns_marqueeH

function populateH(){
if (iedomH){
cross_marqueeH=document.getElementById? 
document.getElementById("iemarqueeH") : document.all.iemarqueeH
cross_marqueeH.style.left=parseInt(marqueewidthH)+8+"px"
cross_marqueeH.innerHTML=marqueecontentH
actualwidthH=document.all? marqtemp.offsetWidth : 
document.getElementById("marqtemp").offsetWidth
}
else if (document.layers){
ns_marqueeH=document.ns_marqueeH.document.ns_marquee2
ns_marqueeH.left=parseInt(marqueewidthH)+8
ns_marqueeH.document.write(marqueecontentH)
ns_marqueeH.document.close()
actualwidthH=ns_marqueeH.document.width
}
lefttimeH=setInterval("scrollmarqueeH()",20)
}
window.onload=populateH

function scrollmarqueeH(){
if (iedomH){
if (parseInt(cross_marqueeH.style.left)>(actualwidthH*(-1)+8))
cross_marqueeH.style.left=parseInt(cross_marqueeH.style.left)-copyspeedH+"px"
else
cross_marqueeH.style.left=parseInt(marqueewidthH)+8+"px"

}
else if (document.layers){
if (ns_marqueeH.left>(actualwidthH*(-1)+8))
ns_marqueeH.left-=copyspeedH
else
ns_marqueeH.left=parseInt(marqueewidthH)+8
}
}

if (iedomH||document.layers){
with (document){
document.write('<table border="0" cellspacing="0" cellpadding="0"><tr><td>')
if (iedomH){
write('<div style="position:relative;width:'+marqueewidthH+';height:'+marqueeheightH+';overflow:hidden">')
write('<div style="position:absolute;width:'+marqueewidthH+';height:'+marqueeheightH+';background-color:'+marqueebgcolorH+'" onMouseover="copyspeedH=pausespeedH" onMouseout="copyspeedH=marqueespeedH">')
write('<div id="iemarqueeH" style="position:absolute;left:0px;top:0px"></div>')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+marqueewidthH+' height='+marqueeheightH+' name="ns_marqueeH" bgColor='+marqueebgcolorH+'>')
write('<layer name="ns_marquee2" left=0 top=0 onMouseover="copyspeedH=pausespeedH"  onMouseout="copyspeedH=marqueespeedH"></layer>')
write('</ilayer>')
}
document.write('</td></tr></table>')
}
}
