
/*--------------------------------------------------------------------------------
--------------------------------------------------------------------------------*/

function Send2Cropper(imgPath)
{
	var configUri = 'http://www.sussexcricket.co.uk/cellpic/config.xml';
	var iCountry = '';
	var sUrl = 'http://www.moblin.com/CellPic/Default.aspx?config=' + configUri + '&image=' + escape(imgPath) + '&country=' + iCountry;
	window.open(sUrl, 'cellpic', 'top=0, left=0, resizable=no, scrollbars=no, menubar=0, width=571, height=426');
	return false;
} 

	document.observe('dom:loaded', function(){
										   
		$$('div.lightbox ul li a').each(function(element){
		
			
			var html = '<a href="#" class="sendtomobile" onclick="return Send2Cropper(\'http://www.sussexcricket.co.uk/assets/file_uploads/m_images_upfile/'+element.select('img')[0]+'\');"><span>Send to mobile</span></a>';
			
			
			element.writeAttribute('caption', element.readAttribute('caption')+html);
		});
	});
