$(document).ready(function() {

  $("ul#menu > li > a > img").hover(
    function(){
      if ( $(this).attr("src").search(/over/) > 0 ) { return false; }
      $(this).animate({ 
        paddingRight: 17 + "px"
      }, 200 );
    },
    function(){
      if ( $(this).attr("src").search(/over/) > 0 ) { return false; }
      var src = $(this).attr("src").replace("_over", "");
      $(this).attr("src", src);
      $(this).animate({ 
        paddingRight: 0 + "px"
      }, 200 );   
    }
  );

  $(window).load(function() {
    $.swapImage(".designed_by"); // designed by rollover
  });
        
});
