$(document).ready(function(){


//alert('a');



$('a[href*="add.php?id="]').click(function() {


$.get("/aj_"+$(this).attr('href'), function(data) {
$("#ajb").html(data);
 var wHeight = $(window).height() / 2 + $(window).scrollTop() - 150;
 $('#addok').css('top',wHeight);
  var wHeight = $(window).width() / 2  - 150;
 $('#addok').css('left',wHeight);
$('#addok').show();
setTimeout (function () {$('#addok').hide();}, 1500);
});

 return false;
});


$('.ajfo').click(function() {
  //alert('Handler for .submit() called.');
  var id = $(this).attr('rel');
  var it = $("#id"+id).val();
  var cnt = $("#cnt"+id).val();  
 
$.get("aj_add.php?id="+it+"&cnt="+cnt, function(data) {
$("#ajb").html(data);
var wHeight = $(window).height() / 2 + $(window).scrollTop() - 150; $('#addok').css('top',wHeight);
var wHeight = $(window).width() / 2  - 150; $('#addok').css('left',wHeight);
$('#addok').show();
setTimeout (function () {$('#addok').hide();}, 1500);
});
 
 
 return false;
});


});
