$(document).ready(function() {
	$.fn.pause = function(duration) {
		$(this).animate({ dummy: 1 }, duration);
		return this;
	};
	
	$("#container3").pause(500).fadeIn(1000);
	$("#container3").pause(3500).fadeOut(1000);
	$("#container4").pause(600).fadeIn(1000);
	$("#container4").pause(3600).fadeOut(1000);
	$("#container5").pause(700).fadeIn(1000);
	$("#container5").pause(3700).fadeOut(1000);
	$("#container6").pause(800).fadeIn(1000);
	$("#container6").pause(3800).fadeOut(1000);
	$("#container7").pause(900).fadeIn(1000);
	$("#container7").pause(3900).fadeOut(1000);			
});
