// JavaScript Document
function scrollImage()
{
	var count=$('.image').length;	
	$('img.left').click(function(){
		$('.scroller').animate({marginLeft:'-127px'},'slow');
		setTimeout('moveLeft()',700);
	});
	$('img.right').click(function(){
		$('.scroller').animate({marginLeft:'127px'},'slow');
		setTimeout('moveRight()',700);
	});
}

	function moveLeft()
	{
		$obj=$('.scroller').children('.image:first');
		$('.scroller').children('.image:first').remove();
		$('.scroller').append('<div class="image">'+$obj.html()+'</div>');
		$('.scroller').css('margin-left','0px');	
	}
	function moveRight()
	{
		$obj=$('.scroller').children('.image:last');
		$('.scroller').children('.image:last').remove();
		$('.scroller').html('<div class="image">'+$obj.html()+'</div>'+$('.scroller').html());
		$('.scroller').css('margin-left','0px');
	}
function autoscroll()
{
	$('.scroller').animate({marginLeft:'-127px'},'slow');
	setTimeout('moveLeft()',700);
	
	setTimeout('autoscroll()',1500);
	
}
