$ = jQuery;
$(document).ready(function() {
    $('.lined tr:even').addClass('even'); 
  
  $('#modules-banner a').each(function(i, el) {
    el = $(el);
    el.bind({
      'mouseenter' : function(e) {
        $('#' + this.id.replace('link', 'excerpt')).removeClass('hidden');
      },
      'mouseleave' : function(e) {
        $('#' + this.id.replace('link', 'excerpt')).addClass('hidden');
      }
    });
  });

  $('.s').bind('focus', function() {
    if (this.value == 'vyhledávání ...') {
      this.value = '';
      $(this).addClass('active')
    }
  });
  $('.s').bind('blur', function() {
    if (this.value == '') {
      this.value = 'vyhledávání ...';
      $(this).removeClass('active')
    }
  });

  $("a[href$='.jpg'],a[href$='.png'],a[href$='.gif']").fancybox();

});

showSwf = function() {
  var swfWindow = window.open('/wp-content/uploads/prezentace2008/index.swf', 'jkrswf', 'location=0,scrollbars=1,width=900,height=719');
  swfWindow.focus();
  return false;
};


