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