$(document).ready(function() {
    $('img').hover(function(){
    	$(this).attr('src', $(this).attr('src').replace("_1","_2"));
    }, function(){
    	if ($(this).attr('id') !== 'currentPage') {
    		$(this).attr('src', $(this).attr('src').replace("_2","_1"));
    	}
    });
});