$(function(){
						 
	//faded slider
	$("#faded").faded({
		speed: 700,
		crossfade: true,
		autoplay: 10000,
		autopagination:false
	});
	
	//carousels init
	$(".carousel").jCarouselLite({
			btnNext: ".next",
			btnPrev: ".prev"
	 });
	$(".carousel-alt").jCarouselLite({
			btnNext: ".next-alt",
			btnPrev: ".prev-alt"
	 });
	
	//descriptions effect
	$(".carousel .button, .carousel-alt .button").hover(function(){
		$(this).next(".extra-box").stop().animate({top:"0"}, "fast")
	}, function(){
		$(this).next(".extra-box").stop().animate({top:"317"}, "fast")
	})

});
