/**
 * The Syn.IgnTopRated Component Class
 */ 

/**
 * Create a Syn.IgnTopRated component instance
 * @constructor
 */
Syn.IgnTopRated = Syn.Component.extend(
{
	/**
	 * Initialize the component class. This is called automatically by the default constructor.
	 * @member Syn.IgnTopRated
	 * @param {Object} config
	 */
	init: function(config)
	{		
		this._super(config);		
		this.uniqueElmt('table').tablesorter({widgets: ['zebra']});
	} 	
	
	
	
	
	
	
});

