$(document).ready(function() {
	repair_tables();
	disable_readonly();
});

function correct_small_menu() {
	toltip();
	Cufon.replace('.small_menu');
	repair_tables()
}

function repair_tables() {
	$('th:first-child').css('border-left', "solid 1px #df6b00")
	$('th:last-child').css('border-right', "solid 1px #df6b00")
}

function click_small_menu(elm) {
	alert(elm);
	return false;
}

function disable_readonly() {
	$('input[type="checkbox"][readonly="readonly"]').click(function() { return false; })
}