$(document).ready(function(){
		running = 0;
		$('#rotate ul li a').click(function() {
			idd = $(this).attr('href');
			aa = $(this).parent().attr('class');
			$(document).stopTime('controlled');
			
				if(!running){
					$('#rotate').removeClass().addClass('b'+aa);
					running = 1;
					$('.bb:visible').stop().fadeOut(function(){
						
						$(idd).fadeIn(function(){running = 0;});
					});
				}
			
			return false;
		});


$(document).everyTime(8000,'controlled', function(i) {
		aa = i%4+1;
		if(!running){
			running = 1;
			$('.bb:visible').stop().fadeOut(function(){
				$('#rotate').removeClass().addClass('bb'+aa);
				$('#b'+aa).fadeIn(function(){running = 0;});
			});
		}
});

});
	
