/*
window.addEvent('domready',function() {


var image = $('_dimage');
var div = $('_ddiv');
if (image != null && div != null) {
	//var pos = $('_dcontainer').getPosition();
	//alert(pos.x + " " + pos.y);
	//var size = $('_dcontainer').getSize();
	//alert(size.x + " " + size.y);
	var point = image.getCoordinates($('_dcontainer'));
	//alert("top " +  point.top + " left " + point.left + " bot " + point.bottom + " right " + point.right + " height " + point.height);
	
	var position_y = 30;//Math.round(point.height.toInt() * 20 / 100 );
	var position_x = 20;//Math.round(point.width.toInt() * 24 / 100 );
	
	var width = 80;//Math.round(point.width.toInt() * 80 / 100 )
	var height = 84; //Math.round(point.width.toInt() * 84 / 100 )
	
	div.setStyles({
					"position" : "absolute", 
					"top" : position_y + point.top.toInt(), 
					"left" : position_x  + point.left.toInt(), 
					"border" : "solid red 1px", 
					"width" : width, 
					"height" : height
					});	
}

});
*/
