// JavaScript Document


//IE 6 does not support a hover on a list element, so a hover class is added to display the effect on the left nav.


$(function() { 
	if($.browser.msie && $.browser.version=="6.0") 
	{
		   
		$("#interior #leftNav ul li").hover(
		  function () {
			$(this).addClass("hover");
		  }, 
		  function () {
			$(this).removeClass("hover");
		  }
		);
	}
});




