$(document).ready(function () {

  $("#content img").corner("10px");
  $("#gallery #pic").corner("10px");
  $("#gallery ul li").corner("10px");
  
  $("#gallery ul li a").click(function (e) { 
    $("#gallery #pic img").attr('src',$(this).attr('href')); 
    e.preventDefault();
  });
  

});
