// JavaScript Document
function init() {
		//function is called to dynamically and exactly extend the height of the bottom subsidary menu item 
		//with it's accompanying right border it completes the interrupted border effect of the menu section
		
		var newbottomMenuHeight;
		var contentHeight = document.getElementById('content').offsetHeight;
		var menuHeight = document.getElementById('navigation').offsetHeight;
		//var bottomMenuHeight = document.getElementById('bottomMenu').offsetHeight;

		//var isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
		if(contentHeight > menuHeight)
		{
			newbottomMenuHeight = contentHeight - menuHeight;
			
			//document.getElementById('last').style.marginTop = newbottomMenuHeight + 60 + 'px';
			document.getElementById('last').style.paddingTop = newbottomMenuHeight + 15 + 'px';
			//alert(document.getElementById('last').style.marginTop);
		}else{
			
		}
		
	}
  window.onload = init;