$(function()
{
  $("#menu div").click(function(){
  $("#menu div").removeClass("set");
  $(this).addClass('set'); 
  var index = $("#menu div").index( $(this) ); 
  $(".showbox").eq(index).siblings(".showbox").hide().end().fadeIn("slow");
});

  $("#more img").click(function(){
  var index = $("#menu img").index( $(this) ); 
  $(".moreinfo").eq(index).siblings(".moreinfo").hide().end().fadeIn("slow");
});


});



