Simple JSON Query

Simple JSON Query

I think that this is a pretty straight forward JSON question, but I am stumped.
I can retrieve the data back fine as a json string from YouTube with the following code.
However, I want to determine what the title of the requested video.  The result returned from YouTube as you will see is a single result.
Can any help me determine, from the result how I can "alert" the title?
All of the json shows up in the console log.
  1. var CurLink = "St_ZsaKR_G4"
  2. $.getJSON("https://gdata.youtube.com/feeds/api/videos?v=2&alt=jsonc&q=" + CurLink,
  3. function(data) {
  4.             console.log(data);
  5.             alert(<what goes here>);
  6.       }
  7.  );