/* requires /common/scripts/preload.js */
jQuery.preloadImages("/isn/images/tab_l_hilite.gif", "/isn/images/tab_r_hilite.gif");

jQuery(document).ready(function(){
	jQuery("#header-nav li:not(.hilite)").hover(
		function(){jQuery(this).addClass("hilite");},
		function(){jQuery(this).removeClass("hilite");}
	)
});