$(function(){

	//scroll function
	var sc = function() {
		$('html,body').animate({
			scrollTop: $('div.selected').offset().top - 140
		},'500');
	};

	//hide more information
	$('div.more').hide();
	
	//click
	$('a.button-grey').click(function(){
		
		//if div#more is open, slideUp and show button
		if ($('div.more').hasClass('selected')) {
			$('div.more').slideUp('fast').removeClass('selected');
			$('div.more').prev('a.button-grey').show();
		};
		
		
		//hide button, find next div#more, slideDown, scroll and add class selected
		$(this).hide().next('div.more').stop().delay().slideDown('fast',sc).addClass('selected');
		
		return false;
	});
});

//$(function(){
//	$('div#more').hide();
//	
//	$('a#button-grey').toggle(
//		function(){
//			$(this).next('div#more').slideDown('slow');
//		},
//		function(){
//			$(this).next('div#more').slideUp('slow');
//		}
//	);
//});