var clickedButton = "";
// JavaScript for questionnaire buttons
function odinButtonClick(button) {
	clickedButton = button.id.substring(10, button.id.length);
  button.className = 'odinbutton odinbuttonclicked ' + button.id + ' ' + button.id + 'clicked';
}
function odinButtonMouseDown(button) {
}
function odinButtonMouseUp(button) {
  button.className = 'odinbutton odinbuttonnormal ' + button.id + ' ' + button.id + 'normal';
}
function odinButtonMouseOver(button) {
  button.className = 'odinbutton odinbuttonhovered ' + button.id + ' ' + button.id + 'hovered';
}
function odinButtonMouseOut(button) {
  button.className = 'odinbutton odinbuttonnormal ' + button.id + ' ' + button.id + 'normal';
}
function odinButtonFocus(button) {
  button.className = 'odinbutton odinbuttonfocused ' + button.id + ' ' + button.id + 'focused';
}
function odinButtonBlur(button) {
  button.className = 'odinbutton odinbuttonnormal ' + button.id + ' ' + button.id + 'normal';
}



