new PeriodicalExecuter( function( p ) 
	{
		var a = document.getElementsByClassName( 'patronBoxItem' );
		var si = null;
		a.each( function( o, i ) 
		{ 
			if ( o.style.display == '' )
			{
				si = i;
				o.style.display = 'none';
			}
		} );
		if ( si !== null )
		{
			si++;
			if ( si >= a.length )
			{
				si = 0;
			}
			$( 'patron' + si ).style.display = '';
		}
	}
	, 3 );
