window.addEvent('domready', start );

function start()
{
	imgs = $('content').getElements('img[src^="/contentimg/small_img_"]');
	
	for ( i in imgs )
	{
		nod = $(imgs[i]);
		if ( nod != null )
		{
			nod.onclick = openImg;
			nod.setStyle('cursor', 'pointer')
		}
	}
}

function openImg ()
{
	n	= $(this);
	
	imgurl = n.getProperty('src');
	imgurl = '/contentimg/large_img_' + imgurl.substr(22);	
	
	window.open( 'imgpop.php?img='+imgurl,'kuva', 'left=100,top=100,width=800,height=600,toolbar=0,resizable=1');
	
}
