/*-*- coding: cp1251 -*-*/

$(document).ready(function() {
  $('#nav_top .li_1:eq(3)').width(150);
  $('#nav_top .li_1:eq(6)').width(170);
  $("#nav_top .li_1, #nav_left .li_1").hoverIntent({
    sensitivity: 1,
    interval: 200,
    over: function() {
      $(this).children(".ul_2").css('display', 'block');
    },
    timeout: 500,
    out: function() {
      $(this).children(".ul_2").css('display', 'none');
    }
  });
  $("#nav_top .li_2, #nav_left .li_2").hoverIntent({
    sensitivity: 1,
    interval: 200,
    over: function() {
      $(this).children(".ul_3").css('display', 'block');
    },
    timeout: 500,
    out: function() {
      $(this).children(".ul_3").css('display', 'none');
    }
  });
});

function printme() {
  var wnd = window.open('', '', 'scrollbars,menubar');
  wnd.document.write("<h1>" + $('td.content h1.title').text() + "</h1>" + $('td.content div.content').html());
  wnd.document.close();
}
