(function($) {

   $(document).ready(function()
   {
      $(".luelisaa").hover(
         function () {
            $(this).find(".nuoli").stop();
            $(this).find(".nuoli").animate( {"margin-left" : "-5px"}, 500 );
         }, 
         function () {
            $(this).find(".nuoli").stop();
            $(this).find(".nuoli").animate( {"margin-left" : "-10px"}, 500 ); 
         }
      );
      
      $("#navig li").hover(
         function () {
            if(!$(this).hasClass("active") )
            {
               $(this).find(".hover").clearQueue();
               $(this).find(".hover").fadeIn("slow");
            }
         }, 
         function () {
            if(!$(this).hasClass("active") )
            {
               $(this).find(".hover").clearQueue();
               $(this).find(".hover").fadeOut("slow");
            }
         }
      );
   });
})(jQuery);
