$(function() {
	$('.gigs-rest').css('display', 'none'); 
  $('.toggleGigs').click(function () {
    $('.gigs-rest').slideToggle('slow');
		$('html, body').animate({
			scrollTop:  $('h1').offset().top
		}, 1000);

	 return false; 
	});
});
