$(document).ready(function() {
	// SUGAR SPICE THUMBNAIL SPECIAL
	$(".sugarspicethumb").mouseover(function() {
		// HINT THAT THIS MAY BE CLICKABLE
		$(this).css("cursor","pointer");
	}).click(function() {
		// FIND THE RADIO BUTTON IN HERE AND TRIGGER THE CLICK
		$(".sstinner input",this).trigger("click");
	});
	
	// HANDLE RADIO BUTTON CLICKS
	$(".sstinner input").click(function(e) { 
		e.stopPropagation();
		$(".sstselected").removeClass("sstselected");		
		$(this).parents(".sugarspicethumb").addClass("sstselected");
		
		$("#selcolour").text($(this).parents(".sugarspicethumb").find("span.colourname").text());
		
		theNewImage = $("#TheProdID").val()  + "-" + $(this).val() + ".jpg";
		$("#prodimagemain").attr("src","/prodhuge/" + theNewImage);
		$("#prodenlargemain").attr("href","/prodenlarge/" + theNewImage);
		
		priceChange = parseFloat($(this).parents(".sugarspicethumb").find("span.pricechange").text().replace(/£/,""));
		newPrice = origProdPrice + priceChange;
		
		//$(".productPrice").html("&pound;" + newPrice);
	});
});
