


$(document).ready(
	
	
	function()
	{
		
	
		var lang = null;
		var j = 0;
		$.getJSON("/companies/jsonsearchplaces?ref=" + encodeURI(document.URL), function(data){
			
			for (i in data) {
				j++;
				var searchPlace = data[i];
 				
 				
 				//alert("dupawkrate");
				/*
				alert();
				break;
				*/
				//$("#r" + searchPlace.sp_id).load(searchPlace.countresultsUrl);
				//$("#r" + searchPlace.sp_id).load("http://wc/test.php");
				$("#r" + searchPlace.sp_id).load(searchPlace.countresultsUrl);
				
				//alert('a' + searchPlace.sp_name);
				/*
				$.getJSON("http://wc/people/countresults/searchPlaceId/" + searchPlace.sp_id + "/query/maciek", function(data){
					$("#r" + data.sp_id).text(data.resultsCount);
					//alert('finished');
				});
				
				alert('b' + searchPlace.sp_name);
				if (j > 3) {
					break;
				}
				*/
				
					
			}
		});
		
		function getResultsCount(searchPlace) {		
			
		}
	}
);