/****
	copyright JMC-Creative.com (c) 2011
	Online Bib Creator 1.9

****/

jQuery(function($){
	$('span.statusChecker').each(function(){
		
		var lib = $(this).find('span.lib').text();
		var rec = $(this).find('span.rec').text();
		var caller = $(this);
		//statusCheck(lib,rec);
		
		$(this).attr({'lib':lib,'rec':rec});

	$.ajax({
			type: "GET",
			url: "status_checker.php",
			data: "lib=" + lib + "&rec=" + rec,
			dataType: "html",
			success: function(txt) {
				caller.html(txt);
				caller.show();
			}
		});

	});

});
