﻿$(document).ready(function(){
  
  $('ul.M0 li').hover(
    function(){
      $(this).addClass('hover');  
    }, function(){
      $(this).removeClass('hover');  

  });
  $('ul.M0 li a').hover(
    function(){
      $(this).addClass('white');  
    }, function(){
      $(this).removeClass('white');  

  });
  $('.kontakt').hover(
    function(){
      $(this).find('.kontaktImg').hide();  
      $(this).find('.kontaktText').show();  
    }, function(){
      $(this).find('.kontaktText').hide();  
      $(this).find('.kontaktImg').show();  
  });


//fancybox
  $("a.iframe").fancybox({
    'overlayShow'  :  true,
    'scrolling' : 'auto',
    'width' : 960,
    'height' : '95%',
    'autoScale' : false,
    'centerOnScroll' : true,
    'overlayShow' : true,
    'hideOnOverlayClick' : false,
    'hideOnContentClick' : false
  });

});
