$(document).ready(function()
{

        $(function() {
            $("#carousel-image").jCarouselLite({
                btnNext: ".next",
                btnPrev: ".prev",
				visible: 1,
                auto: 5000
            });
        });

        $(function() {
            $("#carousel-text").jCarouselLite({
                btnNext: ".next",
                btnPrev: ".prev",
				visible: 1,
				auto: 5000
            });
        });


        var clearQueue = true;
        var gotoEnd = true;
	var duration = 250;
	var easing = "swing";
	
	$('div.carousel-wrap').hover(
		function () {
			$("ul#carousel-controls").stop(clearQueue, gotoEnd).animate({
				bottom: "+=30"
			}, duration, easing );

		}, 
		function () {
			$("ul#carousel-controls").stop(clearQueue, gotoEnd).animate({
				bottom: "-=30"
			}, duration, easing );
		}
	);
	
});
