$(document).ready(function()
{
	var machines = ['njord', 'hexagon', 'stallo', 'titan', 'fimm'];
	
	for (var i = 0, item; item = machines[i]; i++) 
	{
		$('#pingStatus_'+item).load('ping.php', {machine: item});
	}

});