// JavaScript Document

jQuery(document).ready(function($) {
	$(".main .rotate").jCarouselLite({
		btnNext: ".main .next",
		btnPrev: ".main .prev",
		speed: 500,
		easing: "easeinout",
		mouseWheel: false
	});
	
	$('a[rel*=facebox]').facebox({
		loading_image : 'facebox/loading.gif',
		close_image   : 'facebox/closelabel.gif'
	});

	$('a.lightbox').colorbox({
		rel:'Galerie',
		resize:true,
		slideshow:true,
		slideshowAuto:false,
	});
	
	$('.showo').click(function() {
        $('div.overview').load(this.href);
        $('html, body').animate({scrollTop: $("body").attr("scrollHeight") }, 1800);
        return false
	});
});
