var lastCont='';
function oxiePic (ob, picUrl) {
	lastCont = ob.innerHTML;
	w = $(ob).getCoordinates().width;
	l = $(ob).getCoordinates().left;
	ob.innerHTML = lastCont+'<div style="position: absolute; left:'+(w+l)+'px;"><div id="curPicPrev" style="position: relative; top:0px;"><img onload="document.getElementById(\'curPicPrev\').style.top=((Math.round(this.height)*-1)-20)+\'px\';document.getElementById(\'curPicPrev\').style.left=((Math.round(this.width/2)*-1))+\'px\';" src="'+picUrl+'" /></div></div>';
}
function oxiePicOff(ob) {
	ob.innerHTML = lastCont;
}