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

$(document).ready(function() {
  $('.father + ul, .submenu_1 ul').hide();
  $('.father + ul, .submenu_1 ul').each(function (i) {
    $(this).find('a').each(function (i) {
      subUrl = String(document.location).match($(this).attr("href"));
      if (subUrl != null) {
        $(this).parent().parent().slideToggle('normal');
      }
    });
      
  });
  $('.father').click(function() {
    $(this).next().slideToggle('normal');
  });
});




