window.addEvent('domready',function(){
	$$('img[title=upit]').each(function(el){
		el.addClass("hand");
		el.addEvent('click',function(e){
			e.stop();	
			t=el.src.split("/");
			PopupPic(t[5]);
		});
	});
});