// Function to get an image from a modx document
// id -> modx document id
// element -> dom element to put the image in
// host -> modx root url
function get_modx_image(id, element, host)
{
	var el	=	'#' + element;
	$(el).load("getModxImage.php",
	{id: id, host: host}
	);
}