
function thank(__obj, __id)
{
	if(confirm("ถูกใจความคิดเห็นนี้ใช่ไหม ?"))
	{
		
		$.getJSON("ajax.un", { action: "thank", idx: __id }, function(d) 
		{
			if(!d.succes)
			{
				$.jGrowl(d.text, { header: "ถูกใจจังเลย" , theme: "error"});
			}
			
			else
			{
				$.jGrowl(d.text, { header: "ถูกใจจ๊อด" });
				$("div.tool li.thank").hide( "slow" );
			}
		});
		
	}
}

//			$.jGrowl("<ul><li>บันทึกข้อมูลเรียบร้อยแล้ว</li><li>คุณสามารถโพสถูกใจได้ในอีก 3 ชั่วโมงข้างหน้า</li><li>2009-07-23 15:55:55</li></ul>", { header: "ถูกใจจ๊อด" });
