/**
 * @author shaundickie & dave shanley
 */


window.addEvent('domready', function() {
	
	var images = new Array();
	images[0] = 'img/homeimages/2.jpg';
	images[1] = 'img/homeimages/3.jpg';
	images[2] = 'img/homeimages/4.jpg';
	images[3] = 'img/homeimages/5.jpg';
	images[4] = 'img/homeimages/6.jpg';
	images[5] = 'img/homeimages/7.jpg';
	images[6] = 'img/homeimages/8.jpg';
	images[7] = 'img/homeimages/9.jpg';
	images[8] = 'img/homeimages/1.jpg';
	
	var currentCounter = 0;
	
	var welcomeimages = $('welcomeimages');
	
	var imagefader = new Fx.Tween(welcomeimages);
	
	
	var makenewimage = function(){
		
		welcomeimages.empty();
			
		new Element('img', {src: images[currentCounter]}).inject(welcomeimages);
			
		imagefader.start('opacity','1');
			
		if((currentCounter + 1) >= images.length) {
			currentCounter = 0;
		} else {
			currentCounter++;
		}
			
			
	}
	
	
	var addCount = function(){ 
		imagefader.start('opacity','0').chain(makenewimage);
	}
		
	
	addCount.periodical(3000);
	

	
		
});

