$(function()
{
  $("#shmu").click(function(event) {
    event.preventDefault();
    $("#shmulist").slideToggle();
  });
  
  $("#meteo").click(function(event) {
    event.preventDefault();
    $("#meteolist").slideToggle();
  });
});

$(document).ready(function() {
  $("a[@rel='external']").click(function(){
    pageTracker._trackPageview('/outgoing/'+ $(this).attr('href'));
    return !window.open(this.href);
  });

  $(".clanok a").hover(function() {
    $(this).next(".desc").stop(true, true).animate({opacity: "show", bottom: "100%"}, "slow");
    }, function() {
    $(this).next(".desc").animate({opacity: "hide", bottom: "110%"}, "fast");
  });


});