
jQuery( function($){

	if ( $('#banner .rotate').length ) {
		window.setInterval( function(){
			$('#banner .rotate').toggle();
		}, 5000 );
	}

});

