jQuery(document).ready(function(){
	// testing
	/*var current_image = 0;
	$('.homepage .content img').attr('src', 'images/home2.jpg');
	$('.homepage .content img').fadeOut().fadeIn('slow');	*/
});

window.onload = function() {
	var images = ['images/home1.jpg', 'images/home2.jpg', 'images/home3.jpg', 'images/home4.jpg', 'images/home5.jpg', 'images/home6.jpg', 'images/home7.jpg'];
	var current_image = 0;
	setTimeout(function() {
		$('.homepage .content img').fadeOut().fadeIn('slow');
		setInterval(function() { 
			current_image += 1;
			if (current_image >= images.length) {
				current_image = 0;
			} 
			$('.homepage .content img').fadeOut("normal", function() { 
				$('.homepage .content img').attr('src', images[current_image]);
				setTimeout(function() { $('.homepage .content img').fadeIn('slow'); }, 1000);
			});
		}, 7000);		
	}, 1000);
		
}

