$(function() {	
	setInterval("scroll()", 4000 );
	$('#container').animate({
		
		opacity : '1'
		
	}, 2000 );
});


function scroll() {
	
	$('div.even').each(function(i) {
		var src = $(this).find('img:first');
		var image_src = Math.floor(Math.random()*9) + 1;
		$(this).append('<img src = "_images/' + image_src + '.jpg" alt = "' + image_src + '" />').animate({
				marginLeft  : '+=400'
			}, 0, function() {
				src.remove();
		});
	});
	$('div.odd').each(function(i) {
		var src = $(this).find('img:last');
		var image_src = Math.floor(Math.random()*9) + 1;
		$(this).prepend('<img src = "_images/' + image_src + '.jpg" alt = "' + image_src + '" />').animate({
				marginLeft  : '-=400'
			}, 0, function() {
				src.remove();
		});
	});

	

	$('div.even').animate({ 
		
		marginLeft 	: '-=400'
		
	}, 800, "swing", function() {
		$('div.odd').stop().animate({ 
		
			marginLeft  : '+=400'
			
		}, 800, "swing");
	});
	
}
