/*
Fading Scroller- By DynamicDrive.com
For full source code, and usage terms, visit http://www.dynamicdrive.com
This notice MUST stay intact for use
*/

var delay=5000 //set delay between message change (in miliseconds)
var fcontent=new Array()
begintag='<font face="verdana" size=1 color=#00B3AE>' //set opening tag, such as font declarations
fcontent[0]=" <br><br>'IFVC epitomizes the tenacity and ingenuity of independent filmmaking in New York.'<br><br>-Billboard"
fcontent[1]=" <br><br>'IFVC has earned plaudits from The New York Times and Entertainment Weekly.'<br><br>-Billboard"
fcontent[2]=" <br>'Film scholar Bahman Maghsoudlou operates what has been recognized as one of the best video centers in Manhattan – in the entire country, even.'<br><br>-New York Post"
fcontent[3]=" <br><br><br>'For Globetrotters'.<br><br>-The New York Times"
fcontent[4]=" <br><br>'The Center carries approximately 15,000 titles, about 25% of which are out of print or hard to find'.<br><br>-Billboard"
fcontent[5]=" <br><br>'IFVC is nationally recognized for its focus on classic and foreign films'.<br><br>-Billboard"
fcontent[6]=" <br>'Specializing in product ranging from the films of Jean-Luc Godard and Akira Kurosawa to American classics from Preston Sturges and Howard Hawks'.<br>-American Cinematographer"
fcontent[7]=" <br>'An astonishing selection makes IFVC the place to go for hard-to-find foreign, independent and classic films'.<br><br>-New York Post"
fcontent[8]=" <br><br><br>'One of the 10 best video centers in the US'.<br><br>-Entertainment Weekly"
closetag='</font>'

var fwidth='136px' //set scroller width
var fheight='138px' //set scroller height

var fadescheme=1 //set 0 to fade text color from (white to black), 1 for (black to white)
var fadelinks=1  //should links inside scroller content also fade like text? 0 for no, 1 for yes.

///No need to edit below this line/////////////////

var hex=(fadescheme==0)? 255 : 0
var startcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(0,0,0)"
var endcolor=(fadescheme==0)? "rgb(0,0,0)" : "rgb(255,255,255)"

var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index=0

if (DOM2)
faderdelay=2000

//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color=startcolor
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
linksobj=document.getElementById("fscroller").getElementsByTagName("A")
if (fadelinks)
linkcolorchange(linksobj)
colorfade()
}
else if (ie4)
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
else if (ns4){
document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)
document.fscrollerns.document.fscrollerns_sub.document.close()
}

index++
setTimeout("changecontent()",delay+faderdelay)
}

// colorfade() partially by Marcio Galli for Netscape Communications.  ////////////
// Modified by Dynamicdrive.com

frame=20;

function linkcolorchange(obj){
if (obj.length>0){
for (i=0;i<obj.length;i++)
obj[i].style.color="rgb("+hex+","+hex+","+hex+")"
}
}

function colorfade() {	         	
// 20 frames fading process
if(frame>0) {	
hex=(fadescheme==0)? hex-12 : hex+12 // increase or decrease color value depd on fadescheme
document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.
if (fadelinks)
linkcolorchange(linksobj)
frame--;
setTimeout("colorfade()",20);	
}

else{
document.getElementById("fscroller").style.color=endcolor;
frame=20;
hex=(fadescheme==0)? 255 : 0
}   
}

if (ie4||DOM2)
document.write('<div id="fscroller" style="border:1px solid black;width:'+fwidth+';height:'+fheight+';padding:2px"></div>')

window