function roll_change( th ) {
	var th = th || this; 
	
	if( th.className == 'roll_button_down' ) {
		th.className = 'roll_button_up';
	} else {
		th.className = 'roll_button_down';
	}
}
