jQuery(document).ready(function() {

  // skrývání flash zpráviček
  jQuery("div.flash").livequery(function () {
    var el = jQuery(this);
    setTimeout(function () {
      el.animate({"opacity": 0}, 2000);
      el.slideUp();
    }, 7000);
  });

  jQuery("div.flash").livequery("click", function() {
    jQuery(this).hide();
  });

  jQuery(".fancybox").fancybox({
    'titlePosition'   :   'over'
  });

  //image effects
  var image_e = jQuery(".magnifier img");
  image_e.mouseover(function() {
    $(this).stop().animate({ opacity:0.6 }, 400);
  }).mouseout(function() {
    image_e.stop().animate({ opacity:1 }, 400 );
  });

});
