function scrollWin(loc,speed){
$('html, body').animate({
scrollTop: $("#"+loc).offset().top
}, speed);
}


function abet_mm_show(id) {
  $('.abet_mm_act').hide('fast');
  $.ajax({
      	   type: "GET",
      	   url: "t21_abet_mm.php",
      	   data: "id="+id,
      	   success: function(msg){
      			 $('#abet_mm_'+id).html( msg ).show('fast');
      	   }
      	 });
  $('#abet_picts_box').hide('fast');
  $('#abet_desc_box').hide('fast');
}
function abet_picts_show(gr_id) {
  $('#abet_desc_box').hide('slow');
  $.ajax({
      	   type: "GET",
      	   url: "t21_abet_mm.php",
      	   data: "gr_id="+gr_id,
      	   success: function(msg){
      			 $('#abet_picts_box').html( msg ).show('slow');
      	   }
      	 });
}
function abet_desc_show(ap_id) {
  $('#abet_desc_box').hide('fast');
  $.ajax({
      	   type: "GET",
      	   url: "t21_abet_mm.php",
      	   data: "ap_id="+ap_id,
      	   success: function(msg){
      			 $('#abet_desc_box').html( msg ).show('fast');
             scrollWin('abet_desc_box',1000);
      	   }
      	 });
  $('.abet_pict_a').css("border-color","#FFFFFF");
  $('#abet_pict_'+ap_id).css("border-color","#666666")
}

function pl_mm_show(id) {
  $('#'+id).show();
}
function pl_mm_hide(id) {
  $('#'+id).hide();
}
