﻿//nastavení fontu
Cufon.replace('#menu a');
Cufon.replace('h1');


$(document).ready(function()
    {
        //otočit položky menu
        $('.mn01').rotate(15);
        $('.mn02').rotate(6);
        $('.mn04').rotate(-8);
        
        $('.mn05').rotate(-12);
        $('.mn06').rotate(-6);
        $('.mn08').rotate(8);
        $('.mn09').rotate(15);
        
        //animace položek menu po najetí myši    
        $("#menu1 a").hover(function() {
              $(this).animate({left: "-30"}, 500);
            }, function() {
              $(this).animate({left: "0"}, 300);
            });

        $("#menu2 a").hover(function() {
              $(this).animate({left: "30"}, 500);
            }, function() {
              $(this).animate({left: "0"}, 300);
            });


    });
    
    

