// Inicializace.
function init_menuOkna() {

  // Existuje element?
  if (!$('.menuOkna').length) {

    // Pokud neexistuje, končíme.
    return;
  }

  // Rychlost animace.
  var speed = 800;

  // Přidáme třídu poslednímu elementu li.
  $('.menuOkna img:last-child').addClass('last');

  // Začneme zpracováním události mouseover.
  $('.menuOkna a img ').hover(function() {

    // Změníme cílový element img.
    $(this).stop().animate({
      width: '170px',
      height: '170px'

    // Rychlost.
    }, speed)

    // Změníme zbylé elementy img
    .parent().siblings('a').find('img').stop().animate({
      width: '80px',
      height: '80px'

    // Rychlost.
    }, speed);
  },
  // Ukončíme zpracováním události mouseout.
  function() {

    // Obnovíme cílový element img.
    $(this).stop().animate({
      width: '100px',
      height: '100px'

    // Rychlost.
    }, speed)

    // Obnovíme zbylé elementy img
    .parent().siblings('a').find('img').stop().animate({
      width: '100px',
      height: '100px'

    // Rychlost.
    }, speed);
  });
}

// Uvedeme věci do pohybu.
$(document).ready(function() {
  init_menuOkna();
});
