// C-Scroll (cs)- created by Chris Huang
// Note: Normally edit REGION B only. Close quotes can be modified to match the xhtml code, such as from </b> to </b >. //

// --- REGION A STARTS --- //
// cs_speed and cs_pause_time variable range from slow to fast: 0-10 //
var cs_width="140px"
var cs_height="220px"
var cs_speed=1
var cs_pause_time=1
var cs_content='<font face="Arial, Helvetica, sans-serif"; color="#000000"; size="-1"></font>'
// ---REGION A ENDS --- //

// --- REGION B STARTS --- //
// TEXT CONTENT EDIT INSTRUCTIONS //
// 1. Delete the whole line to get rid of unwanted messages.
// 2. Add a new message use: cs_content+='TEXT CONTENT'
// 3. Use general HTML code to format text content.

cs_content+='<p class="style3"><align="left"><center><font color="#006699"; face="Arial, Helvetica, Geneva, sans-serif"><b>Welcome to the new <br>Faculty Professional Development Center Website</b></center></p><hr></font>'

cs_content+='<hr><align="left"><b>We are very excited to announce that we have Lynda.com computer tutorials now available!</b></a> Come in the studio and check it out!<br><br>'

cs_content+='<hr><align="left">Read our latest <br><a href="http://fpdc.kent.edu/resources/publications/perspectives/" target = "_parent"><b>Perspectives Newsletter</b></a>.<br><br>'

cs_content+='<hr><align="left">For up-to-date information on activities and events, please visit our <a href="http://fpdc.kent.edu/events/index.html" target="_blank">Events calendar</a>.<br><br>'

cs_content+='<hr>FPDC is located on the second floor, room 217, Moulton Hall.<br><b>Studio hours: </b><br>Monday-Friday, 8:00 a.m. to 5:00 p.m.<br><br>'

cs_content+='<hr>To schedule a consultation in the studio, please email us at: <a href="mailto:fpdc@kent.edu">fpdc@kent.edu</a> <br>or call 330-672-2992.</p><hr>'
// --- REGION B ENDS ---//




// ADOPTIVE BROWSER CODE - DO NOT MODIFY BELOW THIS POINT//
cs_speed=(document.all)? cs_speed : Math.max(1, cs_speed-1) 
var copyspeed=cs_speed 
var iedom=document.all||document.getElementById
var actualheight=''
var cs, ss
var pausespeed=(cs_pause_time==0)? copyspeed: 0
function populate(){if (iedom){
cs=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
cs.style.top=parseInt(cs_height)+8+"px"
cs.innerHTML=cs_content
actualheight=cs.offsetHeight
}else if (document.layers){
ss=document.ss.document.ss2
ss.top=parseInt(cs_height)+8
ss.document.write(cs_content)
ss.document.close()
actualheight=ss.document.height
}lefttime=setInterval("scrollscroller()",55)}
window.onload=populate
function scrollscroller(){if (iedom){if (parseInt(cs.style.top)>(actualheight*(-1)+8))
cs.style.top=parseInt(cs.style.top)-copyspeed+"px"
else
cs.style.top=parseInt(cs_height)+8+"px"
}else if (document.layers){if (ss.top>(actualheight*(-1)+8))
ss.top-=copyspeed
else
ss.top=parseInt(cs_height)+8
}}if (iedom||document.layers){with (document){if (iedom){
write('<div style="position:relative;width:'+cs_width+';height:'+cs_height+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=cs_speed">')
write('<div id="iescroller" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div>')
}else if (document.layers){
write('<ilayer width='+cs_width+' height='+cs_height+' name="ss">')
write('<layer name="ss2" width='+cs_width+' height='+cs_height+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=cs_speed"></layer>')
write('</ilayer>')
}}}
//END SCRIPT//