$(document).ready(function(){
	$('div.myGames .content table .options a.mostPlayed').click(function(){
		$(this).hide().parents('table')
			.find('span.mostPlayed').show().end()
			.find('span.recentlyPlayed').hide().end()
			.find('a.recentlyPlayed').show().end()
			.find('tr.mostPlayed').show().end()
			.find('tr.recentlyPlayed').hide();
		
		return false;
	});
	
	
	$('div.myGames .content table .options a.recentlyPlayed').click(function(){
		$(this).hide().parents('table')
			.find('span.mostPlayed').hide().end()
			.find('span.recentlyPlayed').show().end()
			.find('a.mostPlayed').show().end()
			.find('tr.mostPlayed').hide().end()
			.find('tr.recentlyPlayed').show();
		
		return false;
	});
	
	
	$('iframe#gameFrame').focus(function(){
		$(document).bind('keydown.gamesPlay',function(e){
			return false;
		});
	}).blur(function(){
		$(document).unbind('keydown.gamesPlay');
	});
});
