$(document).ready(function(){

$("#roller-doors").hide();
$("#thermador").hide();

$("#radio-roller-door").click(function(){
	$("#thermador").hide();
	$("#roller-doors").show();
});

$("#radio-thermador").click(function(){
	$("#roller-doors").hide();
	$("#thermador").show();
});

//$("#thermador-automatic").click(function(){
//$("#thermador-model-no").removeAttr("disabled");
//});

});
