$(function(){
	$('img.hover').hover(function(){
        $(this).attr('src', $(this).attr('src').replace('.jpg', '_on.jpg'));
		}, function(){
        	if (!$(this).hasClass('currentPage')) {
        	$(this).attr('src', $(this).attr('src').replace('_on.jpg', '.jpg'));
        }
   });
});
