/**
 * Javascript class for the games_info component
 */

/**
 * Create a Syn.GamesInfo component instance
 * @constructor
 */
Syn.GamesInfo = Syn.Component.extend (
{
	/**
	 * Initialize the component class.  This is called automatically by the default constructor.
	 * @member Syn.GamesInfo
	 */
	init: function(config)
	{
		this._super(config);

		$('#'+config.unique_key).parent().parent().each(function(i)
		{
			// Hide the appropriate tabbed navigation element on the tabbed games_info component.
			$('#'+this.id+'_nav').css('display', 'none');
		});
	}
});
