$(document).ready(function(){
  $('a[rel=colorbox]').colorbox();
  
	$('.gallery .more').click(function(){									   			
		if (!$(this).hasClass('opened')) {
			var morePhotosCount = $('.gallery .morePhotos .photo').size();
			var photosPerLine = 5;
			//var photoMargin = parseInt($('.gallery .photo').css('marginTop')) + parseInt($('.gallery .photo').css('marginBottom'));
			var photoHeight = $('.gallery .photo').first().outerHeight(true);
			
			var photoLines = Math.ceil(morePhotosCount/photosPerLine);
			
			var animateHeight = photoHeight * photoLines;		
		} else {
			animateHeight = 0;	
		}
		
		$(this).toggleClass('opened');
				
		$('.gallery .morePhotos').animate({height: animateHeight + 'px'}, 300);
	});	
	
	$('li.search').click(function(){
		$('#search-form').toggle('slow');
	});
	
	$('.close').click(function(){
		$(this).parent().hide('slow');
	});
		
});
