/*
Name		:	Content - Splash
Author/s	:	Yang Wong
Related		:	php, css, js
*/

// CLASS //

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

	// CONSTRUCTOR //

	initialize: function()
	{
	},

	// INITIALISATION //

	init: function()
	{
		// Tooltips
		var options = {
						contentClass: 'tooltip_content_1',
						maxWidth: 250
						};
		$$('.s_highlight').each(function(element) { new Tooltip(element, options); });
	}

}

// MAIN //

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