var effect = {
/*
 * Paramerters: The element,color,width,type
 */
border:function(obj,color,width,type){
	obj.style.borderColor=color;
	obj.style.borderStyle=type;
	obj.style.borderWidth=width;
},

background:function(obj,color){
	obj.style.backgroundColor=color;
}

}