$(function() {
$("#social-box img").hover(
 function()
 {
  this.src = this.src.replace("_bw.gif",".gif");
 },
 function()
 {
  this.src = this.src.replace(".gif","_bw.gif");
 }
);
});
