/*
 * Right DIV Height
 */

function heightDiv(){
	var contentHeight 				= getHeight();
	$('contentBlock').style.height	= contentHeight+'px';
}

/*
 *	Load Function
 */
 
window.onload = window.onresize = function(){
	heightDiv();
}

