function getCoords(sel){
	//alert(t.left +', '+ t.top +', '+t.width +', '+ t.height +', '+ t.right  +', '+ t.bottom);
	var p = $(sel);
	var width = p.width();
	var height = p.height();
	
	var offset = p.offset();
	var left = offset.left;
	var right = left+width;
	var top = offset.top;
	var bottom = top+height;

	var obj = {
		'width': width,
		'height': height,
		'left': left,
		'top': top,
		'right': right,
		'bottom': bottom
	};
	
	return obj;
}
