function git(nere)
{
	 $('#_yeni').html('<img src="images/load.gif" />');
	 $.ajax({
	   type: 'GET',
	   url: 'ajax.php',
	   data: nere,
	   success: function(sonuc) {
		$('#_yeni').html(sonuc).show('slow');
	   }
	  });
	  return false;
}
function git2(nere)
{
	 $('#_hit').html('<img src="images/load.gif" />');
	 $.ajax({
	   type: 'GET',
	   url: 'ajax.php',
	   data: nere,
	   success: function(sonuc) {
		$('#_hit').html(sonuc).show('slow');
	   }
	  });
	  return false;
}
