		$(document).ready(function(){
			$("div.news div").mouseover(function(){
				$("div.news div#"+this.id).addClass("active");
			});
			$("div.news div").mouseout(function(){
				$("div.news div#"+this.id).removeClass("active");
			});
			$("div.news div").click(function(){
				window.location.href = "/worxcms_published//news_page"+this.id+".shtml";
			});
		});

