//ON LOAD
$(document).ready(function(){
//start fuctions//
//*************************************


//*************************************
//end fuctions//
});

// JS Class
//**********************************
function UI(id) {
    this._id = id;
}

UI.prototype._id;

UI.prototype.getName = function() {
    return this._n;
}

//method
var m = new UI();

UI.prototype.MyFirstFunction = function(strId){

}
