function putBullets(bulletArray)
{
	var i = 0;
	while (i < bulletArray.length)
	{
		jQuery("#" + bulletArray[i]).css("top", parseInt(bulletArray[i + 1]));
		jQuery("#" + bulletArray[i]).css("left", parseInt(bulletArray[i + 2]));
		i += 3;
	}
}

function showBox(id, top, left)
{
	jQuery("#" + id + "-box").css("top", top);
	jQuery("#" + id + "-box").css("left", left);
	/*jQuery("#" + id + "-box").css("display", "block");*/
	jQuery("#" + id + "-box:hidden:first").fadeIn("fast");
}

function hideBox(id)
{
	jQuery("#" + id + "-box").fadeOut("fast");
}
