//if (document.addEventListener) {
  //document.addEventListener("DOMContentLoaded", ondomready, false);
//}



function ondomready(){
	var sI = document.getElementById("separated_img");
	var imgs = sI.getElementsByTagName("img");
	if(imgs[0]){
		var boxHeight = imgs[0].clientHeight;
		document.getElementById("after_img").style.marginTop = (20+boxHeight)+"px";
	}
}


window.onload=ondomready;