google.load("feeds", "1");
function loadFeeds(){
	var feedControl = new google.feeds.FeedControl();
	feedControl.addFeed('http://www.youtube.com/rss/user/Gyoru/videos.rss','Recent Videos');
	feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
	feedControl.draw(document.getElementById('youtube-feed'));
}
google.setOnLoadCallback(loadFeeds);

$('#chat_toggle').toggle(function(){
	$(this).text('Hide Chat').animate({right:300},300);
	$('#chat_embed').stop().animate({width:300},300);
	$('#player,header').stop().animate({marginLeft:-300},300);
	$('footer').stop().animate({left:-150},300);
	return false;
},function(){
	$(this).text('Show Chat').stop().animate({right:0},200);
	$('#chat_embed').stop().animate({width:0},200);
	$('#player,header').stop().animate({marginLeft:0},200);
	$('footer').stop().animate({left:0},200);
	return false;
});
