// Image Roll Over$(function(){   $('a img').hover(function(){      $(this).attr('src', $(this).attr('src').replace('_off', '_on'));        }, function(){           if (!$(this).hasClass('currentPage')) {           $(this).attr('src', $(this).attr('src').replace('_on', '_off'));      } });});// Page Smooth Scroll$(function(){   $("a.sps").click(function(){   $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');   return false;   })});// Outside Site$(function(){   $("a[href^='http://']").attr("target","_blank");});
