	$(function() {
		$("div.viewproduct ul li p.thumbs a").each(function(i, domEl) {
			$(domEl).click(function() 
			{
			  var promoprice = $(this).attr("promoprice");	
			  var price = $(this).attr("price");

        // if we have a promo price, rewrite the html element to include original price and promo price
			  if (promoprice > 0)
			    $(this).parents("div.viewproduct").find("li.priceOriginal").html('<span>$' + price + '</span> <span class="discount">$' + promoprice + "</span>");			    
			  else
			    $(this).parents("div.viewproduct").find("li.priceOriginal").text('$' + price);	  			
			  
			  // option specific product page link
			  $(this).parents("div.viewproduct").find("a.productLink").attr("href", $(this).attr("link")); 			  		
			  
			  // option specific image
				$(this).parents("div.viewproduct").find("img.largeImg").attr("src", $(this).attr("href")); 				
				
				// stops swatch href click
				return false;
								
			});
		});
	});