Some text
Some text
Some text
Some text
Some text
jQuery(document).ready(function(){
jQuery('input[type="radio"]').click(function(){
var inputValue = jQuery(this).attr("value");
var targetBox = jQuery("." + inputValue);
jQuery(".box").not(targetBox).hide();
jQuery(targetBox).show();
});
});






