//////////////////////////////////////////////////////////	The purpose of this file is to//	apply a hover class on mouseover//	on the <li> elements in the nav.//	This is because IE doesn't put//	the pseudo class :hover on <li> elements////	This is code that uses the//	jquery javascript library (http://jquery.com/)////////////////////////////////////////////////////////var i = 1;$(window).load(function() {	$(".news td").each(function(){		this.id = "a" + i;		i = i + 1;	});		$("#newslist .title").each(function() {		$(this).html(this.title);	});});
