var GLOBE = (function($) {

	var publicObject = { 
		
		/**
		  Does all that fun stuff after someone enters in the konami code
		  Don't know it? Look it up.
		
		  @private
		*/
		konamiInit : function() {
			
			//confirm code
			alert('wow! you did it!');
			
			//sexophone awesomeness
			if (  !$.browser.msie ) {
				$('body').append('<div id="sexophone"></div>');
				swfobject.embedSWF("../sexophone.swf", "sexophone", "50%", "50%", "8", "", false, { wmode : 'transparent' } );
			}
			
		}
	
	}
	
	return publicObject;
	
})(jQuery);