



/*
Based on: Fading Scroller- By DynamicDrive.com
For full source code, 100's more DHTML scripts, and TOS,
visit http://www.dynamicdrive.com
*/

var delay=2800 //set delay between message change (in miliseconds)
var fcontent=new Array()
begintag='<font face="Arial" size=2>' //set opening tag, such as font declarations


		
		fcontent[0]="<B>NEW YORK, UNITED STATES<BR><A href='/calendar/item12950.html' target=_top>Rat Poison: Stefano Cagol's Rat Game of Poisoned Black and White Chocolate</A></B><BR><span class='tiny'><BR>PRISKA JUSCHKA FINE ART<BR>10&nbsp;April&nbsp;-&nbsp;17&nbsp;May&nbsp;2008</span>"
	
		
		fcontent[1]="<B>PARIS, FRANCE<BR><A href='/calendar/item12933.html' target=_top>Erwin Olaf: Grief</A></B><BR><span class='tiny'><BR>GALERIE MAGDA DANYSZ<BR>5&nbsp;April&nbsp;-&nbsp;17&nbsp;May&nbsp;2008</span>"
	
		
		fcontent[2]="<B>MADRID, SPAIN<BR><A href='/calendar/item13069.html' target=_top>Otto Dix: Portrait of Hugo Erfurth: Techniques and Secrets</A></B><BR><span class='tiny'><BR>MUSEO THYSSEN-BORNEMISZA<BR>11&nbsp;March&nbsp;-&nbsp;18&nbsp;May&nbsp;2008</span>"
	
		
		fcontent[3]="<B>LONDON, ENGLAND<BR><A href='/calendar/item12627.html' target=_top>Martian Museum of Terrestrial Art </A></B><BR><span class='tiny'><BR>BARBICAN ART GALLERY <BR>6&nbsp;March&nbsp;-&nbsp;18&nbsp;May&nbsp;2008</span>"
	
		
		fcontent[4]="<B>STUTTGART, GERMANY<BR><A href='/calendar/item12767.html' target=_top>NOH Suntag   State of Emergency</A></B><BR><span class='tiny'><BR>WÜRTTEMBERGISCHER KUNSTVEREIN STUTTGART <BR>1&nbsp;March&nbsp;-&nbsp;18&nbsp;May&nbsp;2008</span>"
	
		
		fcontent[5]="<B>VIENNA, AUSTRIA<BR><A href='/calendar/item12637.html' target=_top>Exact and Different: Mathematics in Art from Dürer to Sol LeWitt </A></B><BR><span class='tiny'><BR>MUSEUM MODERNER KUNST STIFTUNG LUDWIG <BR>29&nbsp;February&nbsp;-&nbsp;18&nbsp;May&nbsp;2008</span>"
	
		
		fcontent[6]="<B>ST. PETERSBURG, RUSSIA<BR><A href='/calendar/item12734.html' target=_top>Treasures of the Sarmatians - from the Azov Museum of History, Archaeology and Paleontology</A></B><BR><span class='tiny'><BR>THE STATE HERMITAGE MUSEUM  <BR>14&nbsp;February&nbsp;-&nbsp;18&nbsp;May&nbsp;2008</span>"
	
		
		fcontent[7]="<B>DALLAS , UNITED STATES<BR><A href='/calendar/item12857.html' target=_top>J.M.W. Turner</A></B><BR><span class='tiny'><BR>DALLAS MUSEUM OF ART<BR>10&nbsp;February&nbsp;-&nbsp;18&nbsp;May&nbsp;2008</span>"
	
		
		fcontent[8]="<B>ROME, ITALY<BR><A href='/calendar/item12938.html' target=_top>Sebastiano del Piombo (1485 - 1547 </A></B><BR><span class='tiny'><BR>PALAZZO VENEZIA<BR>8&nbsp;February&nbsp;-&nbsp;18&nbsp;May&nbsp;2008</span>"
	
		
		fcontent[9]="<B>NEW YORK, UNITED STATES<BR><A href='/calendar/item12643.html' target=_top>Latino Politics: Arte &#8800; Vida: Actions by Artists of the Americas, 1960 – 2000</A></B><BR><span class='tiny'><BR>EL MUSEO DEL BARRIO  <BR>30&nbsp;January&nbsp;-&nbsp;18&nbsp;May&nbsp;2008</span>"
	

	document.write("<font face='Arial' size=2><a target='_top' href='/calendar/calfp.asp'><B>CK Calendar: On Now</B></A><BR><BR>");
	closetag='</font>'

	var fwidth=280 ; //set scroller width
	var fheight=140; //set scroller height

	///No need to edit below this line/////////////////

	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="rgb(0,0,0)";
			document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag;
			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;
	hex=255;  // Initial color value.

	function colorfade() {	         	
		// 20 frames fading process
		if(frame>0) {	
			hex-=12; // increase color value
			document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.
			frame--;
			setTimeout("colorfade()",20);	
			}
		else {
				document.getElementById("fscroller").style.color="rgb(0,0,0)";
				frame=20;
				hex=255;
		}   
	}

	if (ie4||DOM2)
		document.write('<div id="fscroller" style="border:0px solid black;word-wrap:break-word;width:'+fwidth+';height:'+fheight+';padding:2px"></div>');

	window.onload=changecontent;

	document.write('<ilayer id="fscrollerns" width=&{fwidth}; height=&{fheight};><layer id="fscrollerns_sub" width=&{fwidth}; height=&{fheight}; left=0 top=0></layer></ilayer>');
	document.write("<font face='Arial' size=2><a href='/calendar' target='_top' ><B>more...</B></A><BR>");
	
	