var imgcount = 0

	function swapImages(){
		
		var myIMGs=new Array();
		myIMGs[0]="win75000.png";
		myIMGs[1]="wintrips.png";
		myIMGs[2]="windaily.png";
		
		$('img#tagimg').fadeOut('normal', function () {
$('img#tagimg').attr('src','images/'+myIMGs[imgcount]) });
    	$('img#tagimg').fadeIn('normal');	  
		
		imgcount++;
		
		if(imgcount == 3) { imgcount=0; }
	}
	
	setInterval('swapImages()', 5000);
