$(document).ready(function(){
    $("tr:contains('Longest Side Length:')").hide();
    $("tr:contains('2oz #')").hide();
    $("tr:contains('1oz #')").hide();
	
	var showSetOptID = new Array("7204", "7692", "7200", "7346", "13864", "7580");
	var hideSetOptID = new Array("7203", "7199", "7345", "7457", "7579", "7691");
	
	$.each(showSetOptID, function () {
		$("input[value='"+this+"']").click(function () { 
      		showCustomSet();
    	});
	});
	$.each(hideSetOptID, function () {
		$("input[value='"+this+"']").click(function () { 
      		hideCustomSet();
    	});
	});
});

function showCustomSet() {
   $("tr:contains('2oz #')").show();
   $("tr:contains('1oz #')").show();
}

function hideCustomSet() {
    $("tr:contains('2oz #')").hide();
    $("tr:contains('1oz #')").hide();
}

function hide_stencil_dimension (name) {
	var value = $("option[value='"+$("select[name='"+name+"']").val()+"']").text();
	if (value == "Small (Add $2.00)" || value == "Large (Add $2.00)") {
		$("tr:contains('Longest Side Length:')").show();
	} else {
		$("tr:contains('Longest Side Length:')").hide();
	}
}