$(function(){
	
	$("#cat_id").change(function () {
		$("#cat_id option").each(function() {
			$(this).text($(this).attr("cname"));
		});
		if ($("#cat_id option:selected").attr("value") != 0) 
		{
			$("#cat_id option:selected").text($("#cat_id option:selected").attr("tname")+'/'+$("#cat_id option:selected").attr("cname"));
			$("#other_cat_input").attr("style", "display:none");
		}
	});

	$("#other_cat").click(function(){
		$("#cat_id option[value='0']").attr("selected", "selected");
		$("#other_cat_input").attr("style", "");
		return false;
	});

	$("#square_view").click(function () {
		$.get(
			'index.php',
			{
				view: "square"
			}
		);
	});
});