$(document).ready(function(){	
	$("span").wrap("<span class='first'></span>");
	$("#columnOne img").wrap("<span class='image'></span>");
	
	var $spanwif = $("span.first").width();
	
	$(".next").click(function(){
		$("#container").animate(
			{marginRight: $spanwif*2},
			500,
			function(){
				$("#container").css("margin-right", "0px");
				$("#container span:first").detach().appendTo("#container");
			});
	});
	
	$(".prev").click(function(){
		$("#container").animate(
			{marginLeft: $spanwif*2},
			500,
			function(){
				$("#container").css("margin-left", "0px");
				$("#container span.first:last").detach().prependTo("#container");
				$("#container span:empty").remove();
			}
		);
	});
	
	/*$("#web").click(function(){
		$("#container span.first span").hide();
		$("#container span .web").show();
	});
		
	$("#identity").click(function(){
		$("#container span.first span").hide();
		$("#container span .identity").show();
	});
	
	$("#print").click(function(){
		$("#container span.first span").hide();
		$("#container span .print").show();
	});*/
	
	

});
