
$(function(){
  var animated = 0;

/*
$(".left_menu a").hover(
  function () {
    var n =  $(this).attr("rel");
    $(".a_hover"+n).animate({opacity: "1"}, 500);
  },
  function () {
    var n =  $(this).attr("rel");
    $(".a_hover"+n).animate({opacity: "0"}, 300);

  }
);
*/


















});

//
function form_type1() {
    $(".sl_block1").hide();
    $(".sl_block2").show();
    $(".form_type2").hide();
    $(".form_type1").animate({height: 'show'  }, 1000, function() {  });
}

function form_type2() {
    $(".sl_block1").show();
    $(".sl_block2").hide();
    $(".form_type1").hide();
    $(".form_type2").animate({height: 'show'  }, 1000, function() {  });
}
