﻿var Com = {};

Com.getElement = function(id) {
    return (typeof (id) === 'string') ? document.getElementById(id) : id;
};

Com.$ = Com.getElement;