$(document).ready(function(){
	var lc = 0;
	i = new Array("img/smfader/29.jpg","img/smfader/bent.jpg","img/smfader/spa.jpg","img/smfader/golds.jpg");
	count = i.length;
	$(".flash-hold").empty().css({position:"relative"});
	$.each(i,function(c){$(".flash-hold").append("<img src='"+i[c]+"' style='display:none;position:absolute;top:2px;left:-30px'>");});
	$(".flash-hold img").eq(0).show();
	fadeTo = function(lc){
		if(lc == (count)){			
			$(".flash-hold img").eq(3).fadeOut(1000);
			$(".flash-hold img").eq(0).fadeIn(1000);
			lc = 0;
		}else{
			$(".flash-hold img").eq(parseInt(lc - 1)).fadeOut(1000);
			$(".flash-hold img").eq(lc).fadeIn(1000);
			lc++;
		};
		setTimeout("fadeTo("+lc+")", 4000);
	};
	fadeTo(lc);
});