$(document).ready(function(){
  $("#feature").hide();
  $("#painting a.feature").click(function(){
    $("#feature").show('slow');
    return false;
  });
  $("#feature a.close").click(function(){
    $("#feature").fadeOut('fast');
    return false;
  });
});