/*
						Cross browser Marquee script- © Dynamic Drive (www.dynamicdrive.com)
						For full source code, 100's more DHTML scripts, and Terms Of Use, visit http://www.dynamicdrive.com
						Credit MUST stay intact
						*/
						
						//Specify the marquee's width (in pixels)
						var marqueewidth="750px"
						//Specify the marquee's height
						var marqueeheight="12px"
						//Specify the marquee's marquee speed (larger is faster 1-10)
						var marqueespeed=2
						//configure background color:
						var marqueebgcolor="#000"
						//Pause marquee onMousever (0=no. 1=yes)?
						var pauseit=1
						
						//Specify the marquee's content (don't delete <nobr> tag)
						//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):
						
						var marqueecontent='<nobr><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...Texas jury awarded $6.5 million against Ford Motor Co. where a man was left brain damaged after a rollover accident when the tires on his Explorer lost it`s tread...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...Florida jury awarded $11 million against Mitsubishi to the family of a boy who was killed after being partially ejected from their vehicle...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...Maryland jury awarded $15.3 million to a man after he developed mesothelioma from exposure to a sealant company`s products...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...jury awarded $18 million against Trigen-Philadelphia Energy Corp. to a former college student who broke his back when he fell into an open manhole...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...Washington jury awarded $40.1 million against the manufacturers of an operating monitor when the machine malfunctioned during an operation causing a man`s heart to be damaged...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...Louisiana jury awarded over $4 million against Jeep Grand Cherokee when it went from park to reverse pinning a woman against a column leading to the death of her unborn baby...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...Miami jury awarded $14 million against the Archdiocese of Miami when they failed to notify officials about a party involving underage drinking resulting in the death of one teen and left another paralyzed and brain damaged...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...Texas jury awarded $84 million to a man who was injured when the U-Haul he rented ran over him because the parking brake failed...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...Rhode Island jury awarded $30 million to the victims of a fire at a nightclub which killed 100 people...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...jury awarded $15 million to the families of four women who were killed after being rear ended by a tractor-trailer...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...a $38 million dollar settlement was reached for the families of those killed when a bridge collapsed in Minnesota...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...jury awarded $6 million to the family of a woman who passed away as the result of a morphine overdose after being admitted to a nursing home...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates... the family of a woman who was killed in Boston’s Big Dig tunnel when the ceiling collapsed settled for more than $28 million...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...Florida jury awarded $1.7 million to the family of a mother of three, who died when a metal plate fell off of a truck and struck her car...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...$11.6 million dollars was awarded to a couple who crashed into an embankment due to the lack of safety measures on the highway...</a><a href="CM/Custom/TOCNotableCasesHandled.html">National Verdict Updates...Texas jury awarded two men $1.5 million after a tractor-trailer hit their car after crossing into their lane...</a></nobr>'
						
						
						////NO NEED TO EDIT BELOW THIS LINE////////////
						marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
						var copyspeed=marqueespeed
						var pausespeed=(pauseit==0)? copyspeed: 0
						var iedom=document.all||document.getElementById
						if (iedom)
						document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+marqueecontent+'</span>')
						var actualwidth=''
						var cross_marquee, ns_marquee
						
						function populate(){
						if (iedom){
						cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
						cross_marquee.style.left=parseInt(marqueewidth)+8+"px"
						cross_marquee.innerHTML=marqueecontent
						actualwidth=document.all? temp.offsetWidth : document.getElementById("temp").offsetWidth
						}
						else if (document.layers){
						ns_marquee=document.ns_marquee.document.ns_marquee2
						ns_marquee.left=parseInt(marqueewidth)+8
						ns_marquee.document.write(marqueecontent)
						ns_marquee.document.close()
						actualwidth=ns_marquee.document.width
						}
						lefttime=setInterval("scrollmarquee()",20)
						}
						window.onload=populate
						
						function scrollmarquee(){
						if (iedom){
						if (parseInt(cross_marquee.style.left)>(actualwidth*(-1)+8))
						cross_marquee.style.left=parseInt(cross_marquee.style.left)-copyspeed+"px"
						else
						cross_marquee.style.left=parseInt(marqueewidth)+8+"px"
						
						}
						else if (document.layers){
						if (ns_marquee.left>(actualwidth*(-1)+8))
						ns_marquee.left-=copyspeed
						else
						ns_marquee.left=parseInt(marqueewidth)+8
						}
						}
						
						if (iedom||document.layers){
						with (document){
						document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
						if (iedom){
						write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden">')
						write('<div style="position:absolute;width:'+marqueewidth+';height:'+marqueeheight+';background-color:'+marqueebgcolor+'" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
						write('<div id="iemarquee" style="position:absolute;left:0px;top:0px"></div>')
						write('</div></div>')
						}
						else if (document.layers){
						write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee" bgColor='+marqueebgcolor+'>')
						write('<layer name="ns_marquee2" left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>')
						write('</ilayer>')
						}
						document.write('</td></table>')
						}
						}