/*
 * Right DIV Height
 */

function heightRightDiv(){
	var htmlTag 			= document.getElementsByTagName('html');
	var contentHeight 		= htmlTag[0].offsetHeight;
	var bodyTag				= document.getElementsByTagName('body')
	bodyTag[0].style.height = contentHeight+"px";
	var contentHeight		= getHeight();
	var rightBgHeight		= contentHeight - 184;
	$('rightContent').style.height	= rightBgHeight+'px';
	
	var contenerHeight 		= $('contener').offsetHeight;
	var footerHeight 		= rightBgHeight - contenerHeight;
	if(footerHeight > 292){
		$('footer').style.height	= footerHeight +'px';
	}

}

/*
 *	Load Function
 */
 
window.onload = window.onresize = function(){
	heightRightDiv();
}

