$(document).ready(function(){
	$('a.video_thumb, a.video_title').each(function() {
		var vidId;
		if(vidId = this.href.match(/id=([0-9]*)/)) {
			vidId = vidId[1];
			
			$(this).click(function() {
				Outlet.getOutletExtension('embeddedPlayer').playVideo(vidId);
				$('li#video_player_fullscreen a.full_screen').attr('href', 'video/?id='+vidId);
				$('li#video_player_title a').html($(this).parent().children('a.video_title').html());
			});
			
			this.href = 'javascript: void(0);';
		}
	 });
});