/*


Universal function for changing properties of any object on
a page.

Example: <img src="off.gif" onclick="change(this,{src:'on.gif',style:'border:1px solid red'})" />


*/

function change(obj,attr){
	for(i in attr){
		obj.setAttribute(i, attr[i]);
	}
}