$(document).ready( function () {

	if ($('.gallery').length > 0)
		$('.gallery').cycle({ 
			fx: 'fade', 
			speed: 300, 
			timeout: 3500, 
			next: '.next', 
			prev: '.prev' 
	});
	
	$('div.works').each( function (index, element) {
		if (index > 1) {
			$(this).hide();
		}
	});
	
	$("#more_stuff").bind('click', function (event) {
		event.preventDefault();
		
		if ($(this).hasClass("unfolded")) {
			$('div.works').each( function (index, element) {
				if (index > 1) {
					$(this).hide();
				}
			});
			$('html,body').animate( {scrollTop: $('h2.works').offset().top } , 500); 
			$(this).removeClass('unfolded');
			$(this).html('See more stuff.'); 
		}
		else {
			$('div.works').show();
			$('html,body').animate( {scrollTop: $('h2.works').offset().top } , 500);
			$(this).addClass('unfolded'); 
			$(this).html('Less stuff please.'); 
		}
	});

});

