$(document).ready(function() {	
           
      $('.showTip').tipsy({gravity: 'w'});
      $('.showTipN').tipsy({gravity: 'n'});
      $('.showTipE').tipsy({gravity: 'e'});
      $('.showTipNE').tipsy({gravity: 'ne'});
      $('.showTipS').tipsy({gravity: 's'});      
   
      $('textarea.resizable:not(.processed)').TextAreaResizer();
      $('iframe.resizable:not(.processed)').TextAreaResizer();
      
      $('#slideshow').before('<div id="nav">').cycle({ 
        fx:     'fade', 
        speed:  '1000', 
        timeout: 5000, 
        pager:  '#nav',
        slideExpr: 'img' 
      });
      
      $(".loga img").css("opacity", 1); 
      $(".loga img").hover(function(){
          $(this).stop().animate({"opacity": 1});
      },function(){
          $(this).stop().animate({"opacity": 1});
      });          		          
});
