			function imgfade() {
				$('.thumbnails a').unbind("click", imgfade);
				$('.thumbnails a').click(function(){ return false });
				var $class = $(this).attr("href").substring(1);
				$('#portfolio_wrapper > div:not(:hidden)').fadeOut(800, function() {
					$('#portfolio_wrapper > div#' + $class).fadeIn(800, function(){
					$('.thumbnails a').bind("click", imgfade);
				});
			});
		return false;
		}

			$(document).ready(function() {
				$('#portfolio_wrapper > div').hide();
				$('#portfolio_wrapper div:first').show();
				$('.thumbnails a').bind("click", imgfade);
			});
			
