$(document).ready(function() {
	$('#open-about').click(function () {
    	$('#about').slideDown();
    	$(this).hide();
    	$('#close-about').fadeIn();
	});
	$('#close-about').click(function () {
    	$('#about').slideUp();
    	$(this).hide();
    	$('#open-about').fadeIn();
	});
	$('.zoom').fancybox({
		'titleShow': false,
		'hideOnOverlayClick': false,
		'scrolling': 'no',
		'transitionIn': 'none',
		'transitionOut': 'none',
		'overlayOpacity': '0.35',
		'overlayColor': '#000'
	});
    $('.projectimages').each(function() {
    	var $nav = $('<div class="navigation"></div>').insertAfter(this);
    	$(this).cycle({
    		fx: 'scrollHorz', 
		    speed: 'normal',
	        pager: $nav,
	        timeout: 0,
	        next: '.projectimages img'
    	});
    });
	$(".project").hover(function() {
		var thumbOver = $(this).find("img").attr("src");
		$(this).find("a.teaser").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
		$(this).find("a.teaser span").stop().fadeTo('fast', 0 , function() {
			$(this).hide()
		});
	} , function() {
		$(this).find("a.teaser span").stop().fadeTo('fast', 1).show();
	});
});
