function onProvinceSelect() {
	$("div.province").hide();
	$("#" + $("#provinceId").val()).show();
}
$(function(){
    $("#provinceId").attr("selectedIndex", 0);
    onProvinceSelect();
});

$(function() {
	$("div.province").each(function (index, domElement) {
	    $(domElement).find("div.t-row:even").addClass("odd");
	});
});

$(function() {
	$(".t-row")
		.hover(
			function() {
				$(this).addClass('red-cell');},
			function() {
			$(this).removeClass('red-cell');}
		);	
});	