// This is the youtube gallery
$(document).ready(function() {
	
	function embedVideo(vid, autoplay){
	  var embed = '<object width="425" height="344">';
	  embed +=    '<param name="movie" value="http://www.youtube.com/v/' + vid + '&hl=en&fs=1&autoplay=' + autoplay + '"></param>';
	  embed +=    '<param name="allowFullScreen" value="true"></param>';
	  embed +=    '<param name="allowscriptaccess" value="always"></param>';
	  embed +=    '<embed src="http://www.youtube.com/v/' + vid + '&hl=en&fs=1&autoplay=' + autoplay + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>';
    
    $("#video-embed").html(embed);
  }
	
	//do the button click event
	$(".vid-button").click(function(){
	  
	  var vid_id = $(this).find("span").text();
	  
	  //embed the video
	  embedVideo(vid_id, 1);
	});
	
	//do the first embed
	embedVideo($("#video-navigation ul li:first").find("span").text() , 0);
	
});

