
/* SETUP NAV ROLLOVERS */
jQuery(document).ready(function(){
	$('#shell_nav ol li').each(function(){
		$(this).hover(
			function(){
				if (!$(this).hasClass('on')) {
					$(this).css("background-color", "#001E33")
				}
			},
			function(){
				if (!$(this).hasClass('on')) {
					$(this).css("background-color", "transparent");
				}else{
					$(this).css("background-color","#B7C4CC");
				}
			}
		);
		
	});
});

