function changeStyle(tag,att,val){
var el = document.getElementsByTagName(tag);
for(var i=0;i<el.length;i++){
el[i].style[att] = val;
}
}
