Deprecated: Assigning the return value of new by reference is deprecated in /home/webmogul/public_html/mogul/wp-settings.php on line 520

Deprecated: Assigning the return value of new by reference is deprecated in /home/webmogul/public_html/mogul/wp-settings.php on line 535

Deprecated: Assigning the return value of new by reference is deprecated in /home/webmogul/public_html/mogul/wp-settings.php on line 542

Deprecated: Assigning the return value of new by reference is deprecated in /home/webmogul/public_html/mogul/wp-settings.php on line 578

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/webmogul/public_html/mogul/wp-settings.php on line 18

Warning: Cannot modify header information - headers already sent by (output started at /home/webmogul/public_html/mogul/wp-settings.php:520) in /home/webmogul/public_html/mogul/wp-content/themes/unnamed-one-10-stable/js/functions.js.php on line 1

Warning: Cannot modify header information - headers already sent by (output started at /home/webmogul/public_html/mogul/wp-settings.php:520) in /home/webmogul/public_html/mogul/wp-content/themes/unnamed-one-10-stable/js/functions.js.php on line 1

Warning: Cannot modify header information - headers already sent by (output started at /home/webmogul/public_html/mogul/wp-settings.php:520) in /home/webmogul/public_html/mogul/wp-content/themes/unnamed-one-10-stable/js/functions.js.php on line 1

Warning: Cannot modify header information - headers already sent by (output started at /home/webmogul/public_html/mogul/wp-settings.php:520) in /home/webmogul/public_html/mogul/wp-content/themes/unnamed-one-10-stable/js/functions.js.php on line 1

Warning: Cannot modify header information - headers already sent by (output started at /home/webmogul/public_html/mogul/wp-settings.php:520) in /home/webmogul/public_html/mogul/wp-content/themes/unnamed-one-10-stable/js/functions.js.php on line 1
/* * FastInit * http://tetlaw.id.au/view/blog/prototype-class-fastinit/ * Andrew Tetlaw * Version 1.1 (2006-06-19) * Based on: * http://dean.edwards.name/weblog/2006/03/faster * http://dean.edwards.name/weblog/2006/06/again/ * http://creativecommons.org/licenses/by-sa/2.5/ */ var FastInit = Class.create(); Object.extend(FastInit, { done : false, onload : function() { if (FastInit.done) return; FastInit.done = true; FastInit.actions.each(function(func) { func();}) }, actions : $A([]), addOnLoad : function(func) { if(!func || typeof func != 'function') return; FastInit.actions.push(func);} }); FastInit.prototype = { initialize : function() { for(var x = 0; x < arguments.length; x++) { if(arguments[x]) FastInit.addOnLoad(arguments[x]);} if (/WebKit/i.test(navigator.userAgent)) { var _timer = setInterval(function() { if (/loaded|complete/.test(document.readyState)) { clearInterval(_timer); delete _timer; FastInit.onload();} }, 10);} if (document.addEventListener) { document.addEventListener('DOMContentLoaded', FastInit.onload, false); FastInit.legacy = false;} Event.observe(window, 'load', FastInit.onload);}}