$(function(){
	$('#product_gallery')
	.children('img[id!=product_image_large]').click(function(){
		$('#product_image_large').attr('src', $(this).attr('largeImage'));
		return false;
		})
	.mouseover(function(){
		$(this).css('cursor', 'pointer');
		});
	});
