﻿$(document).ready(init);
function init() {

//IE6 for a:hover with png 1px 5% opacity
/*@cc_on
     @if   (@_jscript_build < 8832)
     
$('a.am-hoverShw').append('<span></span>');
   /*@end
@*/
//end IE6 for a:hover

fixBottom();
//end init
};

/*---STRETCH FOOTER MODULE-----------------------------*/
function fixBottom() {	
	var height = 0;
	var plusMinus = 0;
	if (document.documentElement) {
		height = document.documentElement.offsetHeight ;
	} else if (window.innerHeight) {
		height = window.innerHeight;
	}		
	var dHeight = ($('#wrapper').height() + $('#footer').height()) || 0; 
	if(dHeight>0 && dHeight<height) {
		$('#footer').css('paddingBottom',(plusMinus+height-dHeight)+'px');
	}
};

function dispSubNav(dispId)
{
	var container = document.getElementById("menuSub");
	for(var i = 0; i < container.childNodes.length; i++){
		if(container.childNodes[i].nodeName == "UL")
			container.childNodes[i].style.display = "none";
	}
	/*
	if(dispId=="subhome") { 
		document.body.style.background = "url(images/orangeHr6.gif) repeat-x 0 222px  #fff"; 
		return; 
	}
	document.body.style.background = "url(images/orangeHr24.gif) repeat-x 0 222px  #fff";
	*/ 
	document.getElementById(dispId).style.display = "inline";
};