$(document).ready(function() {
	$(".scanim img:first-child").addClass('last');
	$(".scanim img").click(function() {
		$(this).fadeOut(1000, function() {
			if ( $(this).hasClass('last') ) {
				$("img", $(this).parent()).css('z-index', 10);
			} else {
				$(this).css('z-index', 9)
			}
			$(this).show();	
		});
	});
	// setTimeout('$(".scanim img").click();',300);
});
