
$(document).ready(function() {
	$('.show').show();
	$('.hidden').hide();
	
	$('.little_img').click(function() {
		var currentId = $(this).attr('id');
		$('#' + currentId + '.big_img').show();
		$('.show').hide();
		$('.show').addClass('hidden');
		$('.show').removeClass('show')
		$('#' + currentId + '.big_img').show();
		$('#' + currentId + '.big_img').addClass('show');
		$('#' + currentId + '.big_img').removeClass('hidden');
	});
});
