function jStats(advertiser, section)
{
	var moreInfo = "section="+section;
	moreInfo += "&advertiser="+advertiser;

	$.ajax({
	type: "GET",
	url: "http://www.hellobrisbane.com.au/inc/ajax/statsRemoteAjax.php",
	dataType: "json",
	data: moreInfo,
	
	success: function(msg){
	}
	});
	
}

