		<!--
		function getWindowHeight() {
			var windowHeight = 0;
			if (typeof(window.innerHeight) == 'number') {
				windowHeight = window.innerHeight;
			}
			else {
				if (document.documentElement && document.documentElement.clientHeight) {
					windowHeight = document.documentElement.clientHeight;
				}
				else {
					if (document.body && document.body.clientHeight) {
						windowHeight = document.body.clientHeight;
					}
				}
			}
			return windowHeight;
		}
		
		function setFooter() {
			if (document.getElementById) {
				var windowHeight = getWindowHeight();
				if (windowHeight > 0) {
					var contentHeight = document.getElementById('content').offsetHeight;
					var footerElement = document.getElementById('footer');
					var footerHeight  = footerElement.offsetHeight;
					if (windowHeight - (contentHeight + footerHeight) >= 0) {
						footerElement.style.position = 'relative';
						footerElement.style.top = (windowHeight - (contentHeight + footerHeight)) + 'px';
					}
					else {
						footerElement.style.position = 'static';
					}
				}
			}
		}
		
		activateMenu = function(nav) {
		/* currentStyle restricts the Javascript to IE only */
		if (document.all && document.getElementById(nav)) {  
        	var navroot = document.getElementById(nav);
        
        	/* Get all the list items within the menu */
			var lis=navroot.getElementsByTagName("LI");  
        	for (i=0; i<lis.length; i++) {
        		/* If the LI has another menu level */
            	if(lis[i].lastChild.tagName=="UL"){
                	/* assign the function to the LI */
             		lis[i].onmouseover=function() {	
                		/* display the inner menu */
                		this.lastChild.style.display="block";
                	}//end function
                	lis[i].onmouseout=function() {   
                		this.lastChild.style.display="none";
            		}//end function 
       			}//end if
        	}//end for
    	}//end outer if	
		}//end function
		
	
		// simplePreload( '01.gif', '02.gif' ); 
		function simplePreload()		
		{ 		
		  var args = simplePreload.arguments;		
		  document.imageArray = new Array(args.length);			
		  for(var i=0; i<args.length; i++)		
		  {				
			document.imageArray[i] = new Image;		
			document.imageArray[i].src = args[i];		
		  }		
		}		

		
		window.onresize = function() {
			setFooter();
		}
		
		window.onload = function() {
			setFooter();			
			activateMenu('nav'); 
			activateMenu('vertnav'); 
			simplePreload('images/main_home_equity.jpg','images/main_home_equity2.jpg');
		}
			
		//-->
