$(function(){
		var  a = 1;
		var time = window.setInterval(function () {
		if (a == 4) { //Increase this value to increse the number of images allowed
			a = 0;
		}
		$("#rotator img").fadeOut(500, function () {
			$(this).attr("src", "../images/rotator/"+a+".jpg").fadeIn(4000);
				a++;
			});
		}, 15000);	
});
