function indexed(tld, div) {
	var site = 'site:' + window.location;
	document.getElementById(div).innerHTML = '<img src="http://www.gojobs.sk/index/ajax-loader.gif" />';
	var rand = Math.random();
	$.get('http://www.gojobs.sk/index/indexed.php', { site: encodeURIComponent(site), tld: tld, rand: rand }, function(data) {
		$('#' + div).html(data);  
	});
}