$(document).ready(function(){
	$('div.folio').each(function() {
		$(this).find('img:first').fadeIn(function(){
			$('div.folio img').show();
		});
	});
});

$(window).load(function(){
	$('div.gallery a').hover(function(){
		var imageID = $(this).attr('class').replace(/show([0-9]*)(.*)/, '$1');
		$(this).parent().find('img.image'+imageID).css('z-index', 99);
		$(this).parent().find('img:not(.image'+imageID+')').css('z-index', 89);
	});
});
