// JavaScript Document
  
$(document).ready(function() {
//  load() functions 
	$(".tagbutton").click(function(){
		var tag = $(this).text();
		var imgid = $("#idholder").attr("class");
		var count = $("#count" + tag).text();
		$("#count" + tag).load('ajax.php?tag=' + tag + '&id=' + imgid + '&count=' + count);
		return false;
	});
});
