var pro_menu_visible = false;
var pro_menu_item_top = 0;
$(document).ready(function() {
  $("a[rel='gallery']").colorbox({opacity:0.80, current: '{current} / {total}'});
  $('a.video').colorbox({opacity:0.80, iframe:true, innerWidth:425, innerHeight:344});
  $('#pro_menu ul').hide();
  $('a#menu_produkty').click(function() {
    if (pro_menu_visible) {
      $(this).parent().removeClass('pro_menu');
      $('ul#pro_menu').hide('fast');
      pro_menu_visible = false;
    } else {
      $(this).parent().addClass('pro_menu');
      var offset = $(this).parent().offset();
      pro_menu_item_top = offset.top-20;
      $('ul#pro_menu').css('top', pro_menu_item_top+'px').css('left','191px').show('fast');
      pro_menu_visible = true;
    }
    return false;
  });

  $('#pro_menu a.first').mouseover(function() {
    var offset = $(this).parent().offset();
    $(this).addClass('hover');
    $(this).parent().find('ul').css('top', (offset.top-pro_menu_item_top-20)+'px').css('left','191px').show();
  }).mouseout(function() {
    $(this).parent().find('ul').hide();
    $(this).removeClass('hover');
  });
  $('#pro_menu ul').mouseover(function() {
    $(this).show();
    $(this).parent().find('a').addClass('hover');
  }).mouseout(function() {
    $(this).parent().find('a').removeClass('hover');
    $(this).hide();
  });
  $('ul.folders').hide();
});
