/*
Name		:	Content - Games Summary
Author/s	:	Yang Wong, Sherwin Huang
Related		:	php, css, js
*/

// CLASS //

var COM_CIPHERCITIES_GAMESSUMMARY = Class.create();
COM_CIPHERCITIES_GAMESSUMMARY.prototype =
{

	// CONSTRUCTOR //

	initialize: function()
	{
	},

	// INITIALISATION //

	init: function()
	{
		// Tooltips
		var options = {
						//mouseFollow: false
						};
		$$('.gsum_description').each(function(element) { new Tooltip(element, options); });
	}

	// HELPER //

	// ACTIONS //

}

// MAIN //

var content = new COM_CIPHERCITIES_GAMESSUMMARY();
Event.observe(window, 'load', content.init.bind(content));
