// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function radio_value(el) {
  if($(el + '_1').type && $(el + '_1').type.toLowerCase() == 'radio' && $(el + '_1').checked ) {
    return 'c'
  }
  if($(el + '_2').type && $(el + '_2').type.toLowerCase() == 'radio' && $(el + '_2').checked ) {
    return 't'
  }
}