$(document).ready(function(){
  if($("#und_rep").height()>$("#rep").height())
  {
  $("#s2").hover(function(){
  				var z=$("#und_rep").height()-$("#rep").height();
		      $("#und_rep").animate({top:-z},1500);
		    }, function() {
		      $("#und_rep").stop(); 	
  });
  $("#s1").hover(function(){
		      $("#und_rep").animate({top:'0'},1500);
		    }, function() {
		      $("#und_rep").stop(); 	
  });
  }
  $("div.ypos").click(function(){
  	$(this).parent().parent().find("tr.chet_g, tr.nechet_g").hide();
  	$(this).parent().parent().find("tr.chet, tr.nechet").show();
  });
  
  $("div.gpos").click(function(){
   	$(this).parent().parent().find("tr.chet, tr.nechet").hide();
  	$(this).parent().parent().find("tr.chet_g, tr.nechet_g").show();

  });
  
});