$(document).ready( function() {
	if(useCustOpt) {
		$("#product-info-table tr.options select").each( function() {
			$(this).find('option:first').attr('selected', 'selected').parent('select');
		});
		$("#product-info-table tr.options select").each( function(i) {
			$(this).change( function() {
				if($(this).attr("selectedIndex") == 0) {
					$(".suboption-outer").css("display","none");
				} else {
					var opt = $(this).attr("selectedIndex");
					$(".suboption-outer").css("display","none");
					$('.suboption-outer').eq(opt - 1).css("display","block");
				}
			});
		});
	}
});
