jQuery(document).ready(function() {
	SearchCloudId = "#tag-clouds";
	displayCloud(SearchCloudId);
});

function displayCloud(SearchCloudId)
{
	SearchCloudResults = jQuery(SearchCloudId);
	jQuery.getJSON("/cgi-bin/search/topsearches.pl", function(json){
		var ansLength = json.length;
		if(ansLength > 0){
			var cloudData = '';

			for(i=0; i < ansLength; i++) {
				var jsondata="";
				var jsondata=json[i].split("||");
				if (Math.random() > 0.8) {
					cloudData += '<li class="s' + jsondata[1] + '"> <a href="' + jsondata[2] + '"><strong>' + jsondata[0] + '</strong></a> </li> ';
				} else {
					cloudData += '<li class="s' + jsondata[1] + '"> <a href="' + jsondata[2] + '">' + jsondata[0] + '</a> </li> ';
				}
			}
			SearchCloudResults.html(cloudData);
		}
	});
}
