if(is_establishment){
	$(document).ready(function(){
		get_reviews_count();
	});
}

// Send the information to the PHP file and get the fans container
	function get_reviews_count(){
		var page_id = $('div#page_wrapper').attr('list_id');

		$.ajax({
			type: "GET",
			url: site_url+"/?p=get_reviews_count&page_id="+page_id,
			dataType: "script"
		});
	}
// -----------------------------------------------------