var Common = {
	
	
};


var UI = {
	
	addClass: function(id, className) {
		if($(id)) {
			type = (type ? type : 'solid');
			thickness = (thickness ? thickness : '1px');
			$(id).style.border = type + " " + thickness + " " + color;
		}
	},
	
	removeClass: function(id, className) {
		if($(id)) {
			$(id).style.border = '';
		}
	}
		
};

