$(document).ready(
	function(){
		setSelectBoxes();
	}
);
function setSelectBoxes(selectedProductID)
{
	$('.select-unselected').each(
		function(i){
			//find the product identifier
			var productID = this.id.substr(6);
			if(selectedProductID == null) selectedProductID = productID;
			this.innerHTML='';
			var oLink = document.createElement('a');
			oLink.setAttribute('href', 'javascript:setSelectBoxes(' + productID + ');');
			var oImage = document.createElement('img');
			oImage.setAttribute('alt', 'select this box to use this product for the options below');
			if(selectedProductID == productID){
				oImage.setAttribute('src', '/images/reskin/select-checked.gif');
				bFirst = false;
				document.getElementById('radio' + productID).checked = true;
			}
			else{
				oImage.setAttribute('src', '/images/reskin/select-unchecked.gif');
			}
			oLink.appendChild(oImage);
			this.appendChild(oLink);
		}
	);
}
