/* jQuery menu */
jQuery(document).ready(function($){
  //$("div[class*=for_menu_0]").hide();
  $("div[id*=for_nofl_]").hover(show_div, hidden_div);
  $("div[id*=for_dop_]").hover(show_div_dop, hidden_div_dop);
})

function show_div(event)
{
  var x = this.id.length - 3;
  var y = this.id.substring(x);
  var my_div = 'div.nofl_' + y;
  $(my_div).show();
}

function hidden_div(event)
{
  var x = this.id.length - 3;
  var y = this.id.substring(x);
  var my_div = 'div.nofl_' + y;
  $(my_div).hide();
}

function show_div_dop(event)
{
  var x = this.id.length - 2;
  var y = this.id.substring(x);
  var my_div = 'div.dop_' + y;
  $(my_div).show();
}

function hidden_div_dop(event)
{
  var x = this.id.length - 2;
  var y = this.id.substring(x);
  var my_div = 'div.dop_' + y;
  $(my_div).hide();
}
