// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function menuShow(id){
  if ($(id)) {
   $(id).show();
  }
}

function menuSelect(id){
  if ($(id)) {
   // $(id).style.borderColor='#EB1C24';
   $(id).style.fontWeight='bold';
  }
}