/* --- Initialize page --- */
$(document).ready(function(){



	// IE6 and quirks mode interface fixes
	if ($.browser.msie && ($.browser.version < 7 || document.compatMode == 'BackCompat')) {

		// CSS hover replacement
		$("#network>ul>li, #topnav>li").hover(function(){
			$(this).addClass("hover");
		},function(){
			$(this).removeClass("hover");
		});

		// PNG fix
		
	}

});
