//==============================================
$(document).ready(
	function($){
		if( /MSIE 6/.test(navigator.appVersion) != false ){
			$("#nav2 > li")
				.mouseover(function(){$(this).addClass('over');})
				.mouseout(function(){$(this).removeClass('over');});
		}
	}
);

