$(document).ready(function() { 
	
	$('.menu ul').superfish();
	
	$('.rotator1 img:gt(0)').hide();
	setInterval(function(){$('.rotator1 :first-child').fadeOut().next('img').fadeIn().end().appendTo('.rotator1');}, 4200);

	$('.rotator2 img:gt(0)').hide();
	setInterval(function(){$('.rotator2 :first-child').fadeOut().next('img').fadeIn().end().appendTo('.rotator2');}, 4400);

	$('.rotator3 img:gt(0)').hide();
	setInterval(function(){$('.rotator3 :first-child').fadeOut().next('img').fadeIn().end().appendTo('.rotator3');}, 4800);
});

