



/*
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>PALMA DE MALLORCA, SPAIN<BR><A href='/calendar/item13570.html' target=_top>Etruscan Princes. Between East and West</A></B><BR><span class='tiny'><BR>CAIXAFORUM PALMA<BR>5&nbsp;June&nbsp;-&nbsp;29&nbsp;August&nbsp;2008</span>"
	
		
		fcontent[1]="<B>JERUSALEM, ISRAEL<BR><A href='/calendar/item12986.html' target=_top>Real Time: Art in Israel 1998 - 2008</A></B><BR><span class='tiny'><BR>THE ISRAEL MUSEUM, JERUSALEM<BR>30&nbsp;April&nbsp;-&nbsp;30&nbsp;August&nbsp;2008</span>"
	
		
		fcontent[2]="<B>LONDON, ENGLAND<BR><A href='/calendar/item13447.html' target=_top>The Lure of the East: British Orientalist Painting</A></B><BR><span class='tiny'><BR>TATE BRITAIN<BR>4&nbsp;June&nbsp;-&nbsp;31&nbsp;August&nbsp;2008</span>"
	
		
		fcontent[3]="<B>HELSINKI, FINLAND<BR><A href='/calendar/item13196.html' target=_top>Anton Corbijn: Retrospective</A></B><BR><span class='tiny'><BR>TENNISPALATSI ART MUSEUM  <BR>21&nbsp;May&nbsp;-&nbsp;31&nbsp;August&nbsp;2008</span>"
	
		
		fcontent[4]="<B>MUNICH, GERMANY<BR><A href='/calendar/item13454.html' target=_top>Adolph Menzel: Radically Real</A></B><BR><span class='tiny'><BR>KUNSTHALLE DER HYPO-KULTURSTIFTUNG <BR>16&nbsp;May&nbsp;-&nbsp;31&nbsp;August&nbsp;2008</span>"
	
		
		fcontent[5]="<B>NEW YORK, UNITED STATES<BR><A href='/calendar/item13500.html' target=_top>Philip Guston: Works on Paper</A></B><BR><span class='tiny'><BR>THE MORGAN LIBRARY & MUSEUM<BR>2&nbsp;May&nbsp;-&nbsp;31&nbsp;August&nbsp;2008</span>"
	
		
		fcontent[6]="<B>STRASBOURG, FRANCE<BR><A href='/calendar/item13573.html' target=_top>Death Rituals in Alsace from Prehistory to the End of the 19th Century </A></B><BR><span class='tiny'><BR>MUSÉE ARCHÉOLOGIQUE<BR>25&nbsp;April&nbsp;-&nbsp;31&nbsp;August&nbsp;2008</span>"
	
		
		fcontent[7]="<B>NEW YORK, UNITED STATES<BR><A href='/calendar/item13189.html' target=_top>Iron Man, The Flash and Other Superheroes: Fashion and Fantasy</A></B><BR><span class='tiny'><BR>METROPOLITAN MUSEUM OF ART <BR>7&nbsp;May&nbsp;-&nbsp;1&nbsp;September&nbsp;2008</span>"
	
		
		fcontent[8]="<B>ABU DHABI, UNITED ARAB EMIRATES<BR><A href='/calendar/item13281.html' target=_top>Picasso Abu Dhabi: Masterpieces from the Musée National Picasso, Paris</A></B><BR><span class='tiny'><BR>EMIRATES PALACE<BR>27&nbsp;May&nbsp;-&nbsp;4&nbsp;September&nbsp;2008</span>"
	
		
		fcontent[9]="<B>BROOKLYN, NEW YORK, UNITED STATES<BR><A href='/calendar/item13377.html' target=_top>Ancient Futures: The DNA of Culture & Civilization</A></B><BR><span class='tiny'><BR>MUSEUM OF CONTEMPORARY AFRICAN DIASPORAN ARTS (MOCADA)<BR>21&nbsp;June&nbsp;-&nbsp;7&nbsp;September&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>");
	
	