jQuery(document).ready(function($) {

var restheight = $('.go .rest:first').height() + 110;
if( restheight < 500 ) { restheight = 500; }
$('#storycontent.portfolio').animate({"height": restheight}, 300);
$('div.go .rest:first').show().addClass('sticky').prev('img.thumb').addClass('sticky');

$('img.thumb').click( function() {
	$('div.rest').hide();
	$('.sticky').toggleClass('sticky');
	var restheight = $(this).next('.rest').height() + 110;
	if( restheight < 500 ) { restheight = 500; }
	$(this).addClass('sticky');
	$(this).next('.rest').show();
});


$('.menu').click(function() {
	$('div.rest').hide();
	$('.sticky').toggleClass('sticky');
	$('div.go').hide();
	$('.go').removeClass('go');

	var newcat = $(this).text();

	$('.' + newcat).addClass('go');
	$('#' + newcat).addClass('go');
	$('#' + newcat).show();
 
	var restheight = $('.go .rest:first').height() + 110;
	if( restheight < 500 ) { restheight = 500; }
	$('#storycontent.portfolio').animate({"height": restheight}, 300);
	$('div.go .rest:first').show().addClass('sticky').prev('img.thumb').addClass('sticky');

});


});

