
/*
Cross browser marquee script II-
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/

//Specify the marquee's width (in pixels)
var marqueewidth=315
//Specify the marquee's height
var marqueeheight=190
//Specify the marquee's scroll speed (larger is faster)
var speed=1
//Specify the marquee contents
var marqueecontents='<font face="Verdana, Arial, Helvetica" color="#333399" size="1"><p style="margin-left: 5"><font size=2><B>Our Mission</B></font><BR><BR>\"In today’s world of specialization, it\’s hard to find a company that can take a project from start to finish, handling every facet of the process. Wigdahl Electric has the distinct ability to offer clients one central point of control and accountability throughout an entire project. Our main objective is to deliver a project with not only the highest quality materials, workmanship and services, but do it on time and within budget. At Wigdahl Electric we don\’t follow industry standards... <B><I>We set them!</I></B>\"<BR><BR><B><font size=2>Our Commitment</font></B><BR><BR>\"It is our unwavering goal to be the best and most innovative organization in this ever changing industry. With our years of experience, expertise and financial strength at your disposal, we\’re ready to work for and with you to achieve your goals. At Wigdahl Electric, our unique team concept and management style is what sets us apart from all the rest.\"<BR><BR><BR><font size=2><B>At Wigdahl Electric we don\’t follow industry standards... <I>We set them!</B></I></font></p></font>'


if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')


function regenerate(){
window.location.reload()
}

function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}


function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}


function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}


window.onload=regenerate2