function show_fix(element){
	if($(element).style.display == 'none'){
		Effect.BlindDown(element, { duration: 0.3, afterFinish: function() { changing = false; showing = true; currently_showing = true; } });
	}
	return false;
}

function swapImage(element){
	$(element).innerHTML = '<img src="/img/me_too_off.gif" alt="me too!" class="me_too" />';
}