/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(function(){
  $("a",$(".contact")).click(function(){   
    $(".contact").hide("slide",{direction:'up'},"hide",function(){
      $(".contact_form").show("slide",{direction:'up'},"slow");
    });
    return false;
  });

  $("a.anuluj").click(function(){
    $(".contact_form").hide("slide",{direction:'up'},"slow",function(){
      $(".contact").show("slide",{direction:'up'},"hide");
    });
    return false;
  })
})
