/**
 * Content Games Rating UI Class
 */

/**
 * Create a Syn.GamesRating component instance
 * @constructor
 */
Syn.GamesRating = Syn.Component.extend(
{
	/**
	 * Initialize the component class. This is called automatically by the default constructor.
	 * @member Syn.GamesRating
	 * @param {Object} config The configuration data structure
	 */
	init: function (config)
	{
		this._super(config);
		this.uniqueElmt('average_rating').find('a').click(function(){return false;});
	}

});
