	$(document).ready(function(){
	
		var url	= "http://radio.sanook.com";
		// Link Add Friend
		$(".addFriend").click(function(){
		
			if(confirm('กรุณากด OK เพื่อยืนยันการส่งคำขอเป็นเพื่อนค่ะ'))
			{
				//alert( $(this).attr("id") );
				
				$(this).replaceWith("ส่งคำขอแล้ว");
				$.get( url+"/callback/addfriend/",{ nickname:$(this).attr("id") },function(data){
				// if(data=='1'){$(this).replaceWith("ส่งคำขอแล้ว");}
				if(data=='not local'){window.location=url+"/member/register"}
				} );
			}

		});
		
		// Link Remove Friend
		$(".delFriend").click(function(){
		
			if(confirm('กรุณากด OK เพื่อยืนยันการลบรายชื่อเพื่อนค่ะ'))
			{
				
				$(this).replaceWith("ส่งคำขอลบรายชื่อแล้ว");
				$.get( url+"/callback/delfriend/",{ nickname:$(this).attr("id") } );
			}

		});
		
	});