$(document).ready(function(){
	$("div#thumbs img").click(function(){
							//change large preview image
							var currentImage = $(this).attr('src').replace('http://millsbrownink.com/images/store/thumbs/thumb-','');
							currentImage = currentImage.replace('.png','');
							$('#shirtpreview').html('<a class="fancybox group" href="http://millsbrownink.com/images/store/full/' + currentImage + '.jpg"><img src="http://millsbrownink.com/images/store/previews/preview-' + currentImage + '.jpg" /></a>');
							var imageName = $(this).attr('alt');
							$('div#product_form form select.design').val(imageName);
							$("a.fancybox").colorbox({maxHeight:"98%"});
	});
});
