// JavaScript Document

// loop to resize 'menu' and totalHeight based on the content Div's Height

var c=0;
var t;

function getContentHeight(){
c=c+1;
var content=document.getElementById('contentMid');
var contentHeight=content.offsetHeight;
//alert(contentHeight);
heightString=(contentHeight+180)+'px';
document.getElementById('content').style.height=heightString;	
test=document.getElementById('content').style.height;
t=setTimeout("getContentHeight()",1000);
//alert(test);
}



