$(document).ready(function() {
   
      
      $('#t1').hide();
      $('#t2').hide();
      $('#t3').hide();
      $('#t4').hide();
      $('#t5').hide();
      $('#t6').hide();
      $('#t7').hide();

  
  // 1.polozka menu
  //$('#toggle1').mouseover(function() {
  //  $('#m1').show(1200);
  //});
  
  $('#xmenu').hover(function() {

      $('#m1').slideDown("fast");
      }, 
  function () {
    $('#m1').slideUp("fast");
    $('#t1').hide();
    $('#t2').hide();
    $('#t3').hide();
    $('#t4').hide();
    $('#t5').hide();
    $('#t6').hide();
    $('#t7').hide();
  });
  
  $('#menu1').hover(function() { 
      $('#t2').hide();
      $('#t3').hide();
      $('#t4').hide();
      $('#t5').hide();
      $('#t6').hide();
      $('#t7').hide();
      $('#t1').show('slow');
      }, 
  function () {
    $('#t1').hide();
  });
  
  $('#menu2').hover(function() {
      $('#t1').hide();
      $('#t3').hide();
      $('#t4').hide();
      $('#t5').hide();
      $('#t6').hide();
      $('#t7').hide();
      $('#t2').show('slow');
      }, 
  function () {
    $('#t2').hide();
  });
  
  $('#menu3').hover(function() {
      $('#t1').hide();
      $('#t2').hide();
      $('#t4').hide();
      $('#t5').hide();
      $('#t6').hide();
      $('#t7').hide();
      $('#t3').show('slow');
      }, 
  function () {
    $('#t3').hide();
  });
  
  $('#menu4').hover(function() {
      $('#t1').hide();
      $('#t2').hide();
      $('#t3').hide();
      $('#t5').hide();
      $('#t6').hide();
      $('#t7').hide();
      $('#t4').show('slow');
      }, 
  function () {
    $('#t4').hide();
  });
  
  $('#menu5').hover(function() {
      $('#t1').hide();
      $('#t2').hide();
      $('#t3').hide();
      $('#t4').hide();
      $('#t6').hide();
      $('#t7').hide();
      $('#t5').show('slow');
      }, 
  function () {
    $('#t5').hide();
  });
  
  $('#menu6').hover(function() {
      $('#t1').hide();
      $('#t2').hide();
      $('#t3').hide();
      $('#t4').hide();
      $('#t5').hide();
      $('#t7').hide();
      $('#t6').show('slow');
      }, 
  function () {
    $('#t6').hide();
  });
  
  $('#menu7').hover(function() {
      $('#t1').hide();
      $('#t2').hide();
      $('#t3').hide();
      $('#t4').hide();
      $('#t5').hide();
      $('#t6').hide();
      $('#t7').show('slow');
      }, 
  function () {
    $('#t7').hide();
  });

    
    

});

