﻿    /**
    * martinco.js
    * Containts methods / functions / object used throughout the entire public site
    *
    * @requires none
    * @namespace martinco
    * @version 1
    */
    
    /**
    * Registers the default 'martinco' namespace
    * Creates the martinco.namespace(@param) namespace function.
    */
    if (typeof martinco == 'undefined') { var martinco = {}; }
    martinco.namespace = function() { var a = arguments, e = null, c, b, d; for (c = 0; c < a.length; c++) { d = a[c].split('.'); e = martinco; for (b = (d[0] == 'martinco') ? 1 : 0; b < d.length; b++) { e[d[b]] = e[d[b]] || {}; e = e[d[b]] } } return e };

    /**
    * Global vars - Short cut methods
    */
    var Dom = YAHOO.util.Dom;
    var Event = YAHOO.util.Event;
    var $ = Dom.get;
    
    

