$(document).ready(function() {
	$('.adlink').hover(function() {
		
		var tempstr = $(this).attr('src');
		
		$(this).attr("src", tempstr.replace('.jpg','_over.jpg') );
    
	}, function() {
		
		var tempstr = $(this).attr('src');

		$(this).attr('src',  tempstr.replace("_over.jpg",".jpg"));
	});
});

/*$(this).attr('src',  function(index, attr) {
			return attr.replace(/\.[^.]*$/, '_over$&');
		});*/
