// JavaScript Document

$(function(){
	$('a img').hover(function(){
        $(this).attr('src', $(this).attr('src').replace('_top', '_over'));
		}, function(){
        	if (!$(this).hasClass('currentPage')) {
        	$(this).attr('src', $(this).attr('src').replace('_over', '_top'));
        }
   });
});
