document.observe("dom:loaded", function() {
	var elemsToCite = $$("div.inline-image")
	for (var i=0;i<elemsToCite.length;i++)
	{
		cite(elemsToCite[i]);
	}
});

function cite(elem)
{
	if(elem.attributes["cite"])
	{
		var citation = elem.attributes["cite"].value;
		var citationParts = citation.split("|");
		
		var site = citationParts[0];
		var author = citationParts[1];
		var id = citationParts[2];

		if (site == "sxc")
		{
			var text = document.createElement("small");
			text.innerHTML = '<br/><a href="http://www.sxc.hu/photo/'+id+'" target="_blank">Image</a> posted at stock.xchng by <a href="http://www.sxc.hu/profile/'+author+'" target="_blank">'+author+'</a>';
			elem.appendChild(text);
		}
		else if (site = "flickr")
		{
			var text = document.createElement("small");
			text.innerHTML = '<br/><a href="http://www.flickr.com/photos/'+author+'/'+id+'" target="_blank">Image</a> posted at flickr by <a href="http://www.flickr.com/photos/'+author+'" target="_blank">'+author+'</a>';
			elem.appendChild(text);
		}
	}
}