/*
JMS: 01/28/2009
Included in style AFTER the body_container div

Used on "My Account" pages wherever left navigation is used on these pages.
The div with the nav is shopper_links.
shopper_links height adjusts to that of body_container minus height of header and footer.

To use this, make sure shopper_links div exists on page.

*/
if(document.getElementById("shopper_links"))
{
	// Adjust the height of shopper_links based on the height of body_container
	document.getElementById("shopper_links").style.height = (document.getElementById("body_container").offsetHeight-(document.getElementById("headerContainer").offsetHeight + document.getElementById("footer_container").offsetHeight))+"px";
}