Event.observe 
(
	window, 'load', function ()
	{
		$('slogan').observe 
		(
			'click', 
			function (e) 
			{ 
				var x = e.pointerX();
				var y = e.pointerY();
				
				var l = e.element().cumulativeOffset();
				
				x -= l.left;
				y -= l.top;
				
				if (x > 214 && y > 3 && x < 287 && y < 66)
				{
					e.stop(); 
					Sound.play(CMS.settings.static_url + 'sounds/meow.wav');
					Sound.enable();
				}
				else if (x > 94 && y > 60 && x < 105 && y < 70)
				{
					$('toplogo').hide();
				
					e.stop();
					Website.easteregg.start
					(
						{
							'afterFinish' : function ()
							{
								$('toplogo').show();
							}
						}
					);
				}
			} 
		);
	}
);
