	try{
		var a = $$('.rotateMe');
		a.each(function(o){ o.hide(); });
		a[0].show();
		setTimeout( "rotateImages( 0,1)" , 10000  );
	}catch(err){
		
	}
	
	function rotateImages( c, n ){
		transition(  a[c],a[n] );
		
		c = n;
		n = n + 1;
		
		if( n > a.length-1 ){
			n = 0;
		}
		
		setTimeout( "rotateImages( "+c+","+n+");" , 10000 )
	}

	function transition( i, o ){
		//i.fade();
		//o.appear();
		 new Effect.Fade(i, { duration:2});
		 new Effect.Appear(o, { duration:2});
		 
	}