document.observe('dom:loaded',function()
{
	$$('a.openbig').each(function(a)
	{
		a.onclick = function()
		{
			var href = this.getAttribute('href');
			$('image').setAttribute('src', href);
			
			return false;
		};
	});
});

