jQuery(document).ready(function(){
	jQuery(".vid2, .vid3, .vid4").hide();
	jQuery(".thumb2").click(function(){
		jQuery(".vid1,.vid3,.vid4").hide();
		jQuery(".vid2").show();
	});
	jQuery(".thumb3").click(function(){
		jQuery(".vid1, .vid2, .vid4").hide();
		jQuery(".vid3").show();
	});
	jQuery(".thumb4").click(function(){
		jQuery(".vid1,.vid3,.vid2").hide();
		jQuery(".vid4").show();
	});
	jQuery(".thumb1").click(function(){
		jQuery(".vid2, .vid3, .vid4").hide();
		jQuery(".vid1").show();
		
	});

	//TEST--------------->

	var videoOne = '<iframe width="320" height="240" src="http://www.youtube.com/embed/Ef-It10s47Q" frameborder="0" allowfullscreen="true"></iframe>';
	var videoTwo = '<iframe width="320" height="240" src="http://www.youtube.com/embed/5QVbY9NAIsk" frameborder="0" allowfullscreen></iframe>'; 
	var videoThree = '<iframe width="320" height="240" src="http://www.youtube.com/embed/he_Uc4fy0go" frameborder="0" allowfullscreen></iframe>'; 
	var videoFour = '<iframe width="320" height="240" src="http://www.youtube.com/embed/C8W-nbNPhhs" frameborder="0" allowfullscreen></iframe>'; 

	jQuery(".thumb1, .thumb2, .thumb3, .thumb4").click(function(){
		jQuery(".vid1 iframe, .vid2 iframe, .vid3 iframe, .vid4 iframe").remove();
		jQuery(".vid1").prepend(videoOne);
		jQuery(".vid2").prepend(videoTwo);
		jQuery(".vid3").prepend(videoThree);
		jQuery(".vid4").prepend(videoFour);
	});



	





});

/*
	jQuery(".vid1").clone();
	jQuery(".vid1").detach();
	jQuery(".vid1").appendTo("#video-player");
	var clone1 = jQuery(".vid1").clone(true);
*/
