function bAnimate(bId){
	but = document.getElementById(bId);
	but.onmouseover=function(){
		this.className = 'over';
	}
	but.onmouseout=function(){
		this.className = '';
	}
}