$(function() {

	$("ul img").lazyload({ container: $('#gallery ul') });

// carousel

	$(".show_stream").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev",
        speed: 1000,
        circular: true,
        visible: 4,
        scroll: 4
	});

// lightbox

	$(".detail").disp({
		padding: 24,
		overlayOpacity: .9,
		overlayColor: '#ddd'
	});

// special effects

	$('#gallery,#statement,#contact').hide();
	var visible = false;

	$('#nav a').click(function(){
		var its_title = '#'+$(this).attr('title');
		showIt(its_title);
		return false;
	});

	function showIt(item_title) {
		if (visible) { item_title = ''; }
		switch(item_title) {
			case '#gallery':
				top_down = -85;
				bottom_up = 85;
				break;
			case '#statement':
				top_down = -176;
				bottom_up = 176;
				break;
			case '#contact':
				top_down = -33;
				bottom_up = 33;
				break;
			default:
				var top_down = bottom_up = 0;
		}
		$('#slide_top').animate({top:top_down});
		$('#slide_bottom').animate({marginTop:bottom_up});
		$(item_title).fadeIn('1000');
		$("#content").children().not(item_title).fadeOut('1000');
	}

	$('.hider').click(function(){
		$('#slide_top').animate({top:'0'});
		$('#slide_bottom').animate({marginTop:'0'});
		$("#hide_button").hide();
		$(this).parent("#gallery,#statement,#contact").fadeOut('1000');
	});

});

