$(document).ready(function(){
	
	$('.newsmore img').hover(
		function() {
			// i.e on mouseover
			$(this).attr("src", "images/more_pr.gif");
		},
		function() {
			// i.e. on mouseout
			$(this).attr("src", "images/more_on.gif");
		}
	); 
	
	$('.navlights img').hover(
		function() {
			// i.e on mouseover
			var nsrc = $(this).attr("src").replace(/_on/, "_pr");
			$(this).attr("src", nsrc);
		},
		function() {
			// i.e. on mouseout
			var nsrc = $(this).attr("src").replace(/_pr/, "_on");
			$(this).attr("src", nsrc);
		}
	); 
	
 });