var css = {};
css.util = {
setStyle : function(el, prop, val) {
document.getElementById(el[i]).style[prop] = val
},
setCss : function(el, style) {
for ( var prop in style) {
if (!style.hasOwnProperty(prop))
continue;
css.util.setStyle(el, prop, style[prop]);
}
}
}