$(document).ready(function() {
	$('#feature img').hide();
});
$(window).load(function() {
	var counter = 0
	var balls = $('#feature img').length;
	function showBalls() { // this function is called in header
		if (counter <= balls) { 
			$('#feature img').eq(counter).fadeIn(350, function(){
				counter++;
				showBalls();
			});
		}        
	};
	showBalls();
});
