// JavaScript Document

function imageRotate(time){
	$('.rotating_images1 img:gt(0)').hide();
	setInterval(function(){$('.rotating_images1 :first-child').fadeOut().next('img').fadeIn().end().appendTo('.rotating_images1');}, time);
	$('.rotating_images2 img:gt(0)').hide();
	setInterval(function(){$('.rotating_images2 :first-child').fadeOut().next('img').fadeIn().end().appendTo('.rotating_images2');}, time);
	$('.rotating_images3 img:gt(0)').hide();
	setInterval(function(){$('.rotating_images3 :first-child').fadeOut().next('img').fadeIn().end().appendTo('.rotating_images3');}, time);
}