// variation of elements from http://www.olliekav.com/web-design/writing-multiple-toggle-links-in-jquery
// with sibling replacement inspiration from http://www.learningjquery.com/2007/02/more-showing-more-hiding:

$(document).ready(function() {
	$('[class^=sh]').hide();
		$('[class^=item]').click(function() {
			var $this = $(this);
			var x = $this.attr("className");
			$('.sh-' + x).fadeIn('slow').siblings('[class^=sh]').fadeOut('slow');
		return false;
	});
});



// to hide the StickyFooter on the Portfolio page

$(document).ready(function() {
  $('[class^=item]').click(function() {
	$('[class^=disappear]').slideUp();
	return false;
  });
});