var videos2010=new Array(
  '<iframe src="http://player.vimeo.com/video/12980106?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>',
  '<iframe src="http://player.vimeo.com/video/13211523?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>',
  '<iframe src="http://player.vimeo.com/video/12981943?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>',
  '<iframe src="http://player.vimeo.com/video/13212340?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>',
  '<iframe src="http://player.vimeo.com/video/13213184?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>',
  '<iframe src="http://player.vimeo.com/video/13213984?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>'
  );
  
var videos2011=new Array(
  '<iframe src="http://player.vimeo.com/video/26377162?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>',
  '<iframe src="http://player.vimeo.com/video/26383445?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>',
  '<iframe src="http://player.vimeo.com/video/26383832?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>',
  '<iframe src="http://player.vimeo.com/video/26385026?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>',
  '<iframe src="http://player.vimeo.com/video/26385820?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>',
  '<iframe src="http://player.vimeo.com/video/26386268?byline=0&amp;portrait=0&amp;color=007ECE" width="600" height="450" frameborder="0"></iframe>'
  );

$(document).ready(function() {

  $("#page-videos2010 #video-wrapper li").click(function() {
    video = $("#video-wrapper ul li").index(this);
    $("#video-viewer").html(videos2010[video]);
    $('#video-wrapper li').removeClass("active");
    $(this).addClass("active");
    document.location.hash = video;
  });
  
  $("#page-videos2011 #video-wrapper li").click(function() {
    video = $("#video-wrapper ul li").index(this);
    $("#video-viewer").html(videos2011[video]);
    $('#video-wrapper li').removeClass("active");
    $(this).addClass("active");
    document.location.hash = video;
  });
  
  if ( document.location.hash != "" ) {
    video = document.location.hash
    video = video.replace(/#/, "")
      $("#page-videos2010 #video-viewer").html(videos2010[video - 1]);
      $("#page-videos2011 #video-viewer").html(videos2011[video - 1]);
    $('#video-wrapper li').removeClass("active");
    $("#vid" + video).addClass("active");
  }

});
