$(document).ready(
	function()
	{
		$('img[rel][longdesc]').each(
			function()
			{
				$('body').append($('#overlay-source').html().replace('#ID#', $(this).attr('rel').replace('#', '')).replace('#SRC#', $(this).attr('longdesc')));
			}
		).css('cursor', 'pointer').overlay({effect: 'apple', top: 75});
		$('a').focus(
			function()
			{
				$(this).blur();
			}
		);
	}
);
