// JavaScript Document
function initilizePage(){
	
	//content table position
	document.getElementById('contentLayer').style.top=0;
	document.getElementById('contentLayer').style.left=0;
	
	// e-mail list frame
	document.getElementById('mailListBlock').style.height=document.getElementById('mailListContent').clientHeight;
	
	//setting the content space
	var contentHeight=document.getElementById('contentContent').clientHeight;
	var diff=contentHeight%5;
	switch(diff){
		case 1:
		contentHeight+=4;
		break;
		case 2:
		contentHeight+=3;
		break;
		case 3:
		contentHeight+=2;
		break;
		case 4:
		contentHeight+=1;
		break;
	}
	document.getElementById('blockContent').style.height=contentHeight;
	
	//setting the content 2 space
	if(document.getElementById('contentContent2')){
		var contentHeight=document.getElementById('contentContent2').clientHeight;
	var diff=contentHeight%5;
	switch(diff){
		case 1:
		contentHeight+=4;
		break;
		case 2:
		contentHeight+=3;
		break;
		case 3:
		contentHeight+=2;
		break;
		case 4:
		contentHeight+=1;
		break;
	}
	document.getElementById('blockContent2').style.height=contentHeight;
	}
	
	//setting the bg Table height
	document.getElementById('blockTable').style.height=document.getElementById('contentTable').clientHeight;
	
	//setting the bg frame to the same height with the content
	var initHeight=document.getElementById('blockTable').clientHeight;
	if(initHeight>747){
		document.getElementById('bgAdjuster').style.height=initHeight-747;
	}	
}
