$(function() {

    $("#slides").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		easing: "easeOutBounce",
		speed: 1000,
		start: Math.floor(Math.random()*($("#slides div").size()-2)),
		visible: 1
    });

	$("#slides li").hover(
		function(){
			$(this).children("div.information").stop(true, true).fadeToggle();
		}
	);
	$("#overlayfooter").click(
		function(){
			$(this).children("div.content").children("div").stop(true, true).slideToggle();
		}
	);
	
	$("a.img").fancybox({
		'overlayShow' : true,
		'autoScale' : false,
		'centerOnScroll' : true
	});
	
	$("#overlayfooter").children("div.content").children("div").stop(true, true).slideToggle(500,function(){$(this).delay(500).slideToggle();});
});
