$(document).ready(function(){

	$('.thumblink').bind('click', function(){
		new_video = $(this).attr('name');
		new_title = $(this).attr('title');
		new_desc = $(this).parent().siblings('p.hide').html();
		
		$('.old-video').replaceWith('<div class="old-video">' + '<script type="text/javascript" src="swfobject.js"></script><div id="ytapiplayer">You need Flash player 8+ and JavaScript enabled to view this video.</div><script type="text/javascript">var params = { allowScriptAccess: "always" };var atts = { id: "myytplayer" };swfobject.embedSWF("http://www.youtube.com/v/' + new_video + '?enablejsapi=1&playerapiid=ytplayer", "ytapiplayer", "425", "356", "8", null, null, params, atts);</script></div>');
		$('.old-title').replaceWith('<h3 class="old-title"><strong>' + new_title + '</strong>');
		$('.old-desc').replaceWith('<p class="old-desc">' + new_desc);
				return false;
	});
	
	$('.thumbnail').bind('click', function() {
	    new_video = $(this).attr('name');
	    new_title = $(this).attr('title');
	    new_desc = $(this).siblings('p.hide').html();

		$('.old-video').replaceWith('<div class="old-video"><script type="text/javascript" src="swfobject.js"></script><div id="ytapiplayer">You need Flash player 8+ and JavaScript enabled to view this video.</div><script type="text/javascript">var params = { allowScriptAccess: "always" };var atts = { id: "myytplayer" };swfobject.embedSWF("http://www.youtube.com/v/' + new_video + '?enablejsapi=1&playerapiid=ytplayer", "ytapiplayer", "425", "356", "8", null, null, params, atts);</script></div>');
		$('.old-title').replaceWith('<h3 class="old-title"><strong>' + new_title + '</strong>');
		$('.old-desc').replaceWith('<p class="old-desc">' + new_desc);
		return false;
	});
	
});