$(document).ready(function() {
		
	$("#home-carousel-bottom-left-button").click(function()
	{
		var current = $("#carousel-current-visible").html();
		if (current != 'home-carousel-1')
		{
			var next = 'home-carousel-1';
		}
		else
		{
			var next = 'home-carousel-2';
		}

		
		$("#" + next).css("left","783px");
		$("#" + current).animate( { left: "-783px" }, 100);
		$("#" + next).animate( { left: "25px" }, 100);
		
		$("#carousel-current-visible").html(next);
		
	});
	
	$("#home-carousel-bottom-right-button").click(function()
	{
				var current = $("#carousel-current-visible").html();
				if (current != 'home-carousel-1')
				{
					var next = 'home-carousel-1';
				}
				else
				{
					var next = 'home-carousel-2';
				}

				
				$("#" + next).css("left","-783px");
				$("#" + current).animate( { left: "883px" }, 100);
				$("#" + next).animate( { left: "25px" }, 100);
				
				$("#carousel-current-visible").html(next);
				
	});	

});
