$(document).ready(function() {
	$('#stage img:not(:first)').hide();
	
	$('#thumbs img').each(function(i) {
		$(this).click(function() {
			$('#thumbs img').removeClass('active');
			$(this).addClass('active');
			
			$('#stage img:visible').fadeOut();
			$('#stage img:eq('+i+')').fadeIn();
			
			
		});
	});
	
	
});
