$(document).ready(function(){
	$("form#add input:text").addClass("text");
	$("form#add textarea").addClass("textarea");
	$("form#add input:first").focus();
	$("form#add input.back").click(function(){
		window.history.go(-1);								
	});
	
	$("form#add").validate();
	
	$("tbody tr:odd").addClass("odd");
	
	$(".category").editable("../action/admin/cat_edit.php", {
		cancel: '取消',
        submit: '修改',
		indicator: "儲存中...",
		tooltip: '滑鼠點此可編輯...',
		cssclass : "text",
		name: "edit",
		width: "70px"
	});
	
	$(".parent").editable("../action/admin/cat_edit.php", { 
		loadurl : "parents.php",
		type: "select",
		cancel: '取消',
		submit : "修改",
		indicator: "儲存中...",
		name: 'edit'
	});
	
	$(".show").editable("../action/admin/links_edit.php", {
		data: " {'1':'顯示','0':'隱藏','selected':'1'}",
		type: "select",
		cancel: '取消',
		submit : "修改",
		indicator: "儲存中...",
		name: 'edit'
	});
	
	$("form.del").submit(function(){
		return confirmAlert('你確定要刪除這筆資料嗎？');
	});
	
	$("select#change_cat").change(function(){
		($(this).val() == "") ? window.location.href = "links.php" : window.location.href = "links.php?cId="+ $(this).val();
	});
});

function confirmAlert(msg){
	var agree = confirm(msg);
	if(agree)
		return true;
	else
		return false;
}