		$(document).ready(function(){
			var cur=0;
			var all=$("#Carousel-block td").length;
			

			
			$(".Carousel img").mouseout(function(){
				var s=$(this);
				setTimeout(function(){
					s.parent().parent().children("div").hide();
				}, 200);
			});
			$(".Carousel img, .Carousel div").mouseover(function(){
				$(this).parent().parent().children("div").show();
			});
			
			
			$("#Carousel-prev").click(function(){
				if(cur<all-6){
					cur=cur+1;
					$("#Carousel-block").animate({"left": "-"+(152*cur)+"px"}, "slow");
				}
				else{
					cur=0;
					$("#Carousel-block").animate({"left": "-"+(152*cur)+"px"}, "slow");
				}

				return false;
			});
			
			$("#Carousel-next").click(function(){
				if(cur>0){
					cur=cur-1;
					$("#Carousel-block").animate({"left": "-"+(152*cur)+"px"}, "slow");
				}
				else{
					cur=all-6;
					$("#Carousel-block").animate({"left": "-"+(152*cur)+"px"}, "slow");
				}

				return false;
			});
			
		});
