$(document).ready(function()
{  
	$(".menuBox div.item").each(function(i){
		var breedte = 121;
		var sub = $("li", this).size();
		var total = sub*breedte;
		
		$(this).width(total+105);
		
		$(this).css("left", "-" + total + "px");
		$(this).attr("rel", total);
	});
	
	$(".menuBox div.item a.tab").hover(function(){
		$(this).parent().animate({
			left: "0px" 
		}, 700);
	});
	
	$(".menuBox div.item").hover(function(){},function(){
		$(this).animate({
			left: "-" + $(this).attr("rel") + "px"
		}, 700);
	});
});
