function changeButton(obj, flag){
	if(flag == 1)
		obj.className = 'changeButton';
	else
		obj.className = '';
}//end function changeButton
