Следуя сообщению выше,в частности, вот элементарный скрипт. пожалуйста, поругайте меня и ткните носом в баги.
(function(window){
function o_o(selector)
{
var sel=selector+'';
var id=document.getElementById(sel);
id.col=function()
{
this.style.backgroundColor='red';
return this;
}
id.font=function()
{
this.style.fontSize='100px';
return this;
}
return id;
}
window.o_o=o_o;
})(window);