$(document).ready(function(){

	$("div.banner").jCarouselLite({
		auto: 3000,
		visible: 1,
		scroll: 1,
		speed: 750,
		circular: true,
		easing: "easeInOutExpo"
   });
	
	/* Flickr Image crop */
	$(".photos .item div.crop img").each(function(){
		$(this).css("top", "-" + ((parseInt($(this).height())/2)-95) + "px" );
	});

	$(".photos .item").hover(function(){
		$(this).find('.popup-text').animate({ opacity: .75 }, 250);
	}, function(){
		$(this).find('.popup-text').animate({ opacity: 0 }, 250);
	});
	
	$("a.popup").colorbox({ opacity: 0.8, current: "mynd {current} af {total}" });

});