var AnimateIndex = {	run: function()	{		$(document).everyTime(7000, function(i) {  	 		AnimateIndex.check();  		});	},		check: function(event) 	{		var elm = $('.images ul li.show').next();		if (!$(elm).exists()) {			elm = $('.images ul li:first-child');		}		$('.images ul li.show').fadeOut(2000).removeClass('show');		elm.addClass('show').fadeIn(2000);	}}StartUp(AnimateIndex);jQuery.fn.exists = function(){return jQuery(this).length>0;}
