jQuery(document).ready(function (){
	jQuery.ajaxSetup({cache:false});
	
});

function addContent(holdId){
		//alert ($("#bUrl").val());
		var post_id = jQuery("#pDrop_"+holdId).val();
		var purl = jQuery("#bUrl_"+holdId).val();
		var ht="<center><img src=\""+purl+"/wp-content/plugins/featured-post-type/ajax-loader.gif\" alt=\"Loading\" style=\"height:32px;width:32px;\" /><br/>Loading....</center>";
		jQuery("#pBox_"+holdId).html(ht);
		//alert(purl+'/wp-content/plugins/featured-post-type/get-post.php?mainCats='+post_id);
		
		jQuery.get (purl+'/wp-content/plugins/featured-post-type/get-post.php?mainCats='+post_id, function(data) {
			jQuery("#pBox_"+holdId).html(data);
			//  alert(data);
			});
		
		//$("#your_post_here").load("http://<?php echo $_SERVER[HTTP_HOST]; ?>/triqui-ajax/",{id:post_id});
		

		
	};
