var mattvenables = mattvenables || {};

mattvenables.clickMyFace = function() {
  var videoWidth = 425;
  var videoHeight = 344;
  var startTime = 31;
  $('#picture').html(
    '<object width="' + videoWidth + '" height="' + videoHeight + '"><param name="movie" value="http://www.youtube.com/v/_OBlgSz8sSM&amp;hl=en_US&amp;fs=1&amp;autoplay=1&amp;start=' + startTime + '"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/_OBlgSz8sSM&amp;hl=en_US&amp;fs=1&amp;autoplay=1&amp;start=' + startTime + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="' + videoWidth + '" height="' + videoHeight + '"></embed></object>'
  );
};


$(document).ready(function() {
  $('#picture img').click(mattvenables.clickMyFace);
});
