My first jQuery and need some help optimising

My first jQuery and need some help optimising

Hi everyone ... I'm pretty sure this will be an easy answer that has been answered before however I'm not even sure what I should be searching for in the forums... so I'm working on my first jQuery site and it is all working, but my code is becoming long and I'm sure there is a way to reduce it. 

So basically I have a heap of DIVs labelled DIV_L1.. L2... L3 etc etc. Each one changes the content inside my main div called DIV_Video. It also changes the caption. As far as I can tell it is working, but I have about 20 of these divs so surely there is a better way! 
Thanks for the help with this - if there is an article or tutorial I should be reading please let me know!


  1.   $("#DIV_L1").click(function() {
  2. $("#DIV_Video").html('<iframe src="http://player.vimeo.com/video/11779218?title=0&amp;byline=0&amp;portrait=0&amp;color=80ceff" width="640" height="360" frameborder="0"></iframe> <br /> <p2 id="caption"> Quantum Leap </p2>');
  3. });
  4.    
  5.    $("#DIV_L2").click(function() {
  6. $("#DIV_Video").html('<iframe src="http://player.vimeo.com/video/11762166?title=0&amp;byline=0&amp;portrait=0&amp;color=80ceff" width="640" height="360" frameborder="0"></iframe> <br /> <p2 id="caption"> World Mountain Bike Championships </p2>');
  7.   });