$(document).ready(function(){

	//if the image exists, show the thumbs
	if( $("#product-image").attr("src") != '/images/no_photoLarge.gif') 	$(".product-image-selector").show('slow');
	
	$(".product-image-selector > a > img:first").addClass('product-image-selector-on');
	
	//highlight thumb and swap image src
	$(".product-image-selector > a > img").mouseover(function(){
	
		$(".product-image-selector > a > img").removeClass();
		$(this).addClass('product-image-selector-on');
		$("#product-image").attr("src", $(this).attr("src"));
		$("#product-image-caption").text($(this).attr("alt"));
		
	})	
})