$("document").ready(function()
{
  cv_slide_show("div#slide-show", 2000);
  
  // re-arange intro text
  $("div#desc").css({height: "5.5em", overflow: "hidden"});
  
  $("div#desc p").eq(0).append("<a href='#' id='desc-more-info'><b>more info...</b></a>");
  
  $("div#desc").hover(
  function()
  {
    $("a#desc-more-info").css({display: "none"});
    $(this).animate({height: "14em"}, 300);
    
    // show close button
    $("a#hide-intro").css({display:"inline"});
  },
  function()
  {
    $("a#desc-more-info").css({display: "inline"});
    $(this).animate({height: "5.5em"}, 300);
    
    // hide close button
    $("a#hide-intro").css({display:"none"});
  });
  
  // remove intro when cross is clicked
  $("a#hide-intro").click(function()
  {
    // remove events
    $("div#desc").unbind();
    
    $("div#desc").fadeOut(300);
  });
});