/* Start Note, Info Website, Kegiatan, Info Grup */
$(function(){
	var oldid = 0;
	$('.listcommforum').mouseover(function() {
		cek = $(this).find('.commforumform').html();
		if(cek == '') $(this).find('.replylink').show(); else $(this).find('.replylink').hide();		
	}).mouseout(function() {		
		$(this).find('.replylink').hide();
	});
	
	$('.commreply').click(function() {		
		var rel = $(this).attr('rel');
		
		var obj = $(this).parents("div:first").parents("div:first").children('.commforumform');
		$('.wrapbtnformcancel').show();
		if(oldid == 0) {
			obj.append($('#idformkomentar').html()); 
		} else { 
			obj.append($('#'+oldid).find('.commforumform').html());
		}
		var to = $(this).parents("div:first").parents("div:first").find('.idremovebox-name').html();
		
		if(rel == 1) {
			obj.find('#isireply').html(obj.find('#isireply').html()+'\n@'+to+': \n');
		} else {
			var str = $(this).parents("div:first").parents("div:first").children('.commforum-content').text();
			obj.find('#isireply').html(obj.find('#isireply').html()+'\n[quote] @'+to+': '+str.trim()+' [/quote]\n');
		}
		$('#idformkomentar').hide();
		$('.listcommforum').find('.replylink').hide();
		
		$('#'+oldid).find('.commforumform').html('');
		oldid = $(this).parents("div:first").parents("div:first").parents("div:first").attr('id');
		
		obj.find('.btnformcancel').click(function() {
			obj.html('');
			$('.wrapbtnformcancel').hide();
			$('#idformkomentar').show();
			oldid =0;
		});
		$("#isireply").autogrow().fieldtag();
	});	
});
/* End Note, Info Website, Kegiatan, Info Grup */

/* Start Profil status */
$(function(){	
	var oldid = 0;
	$('.mood-comm').mouseover(function() {
		cek = $(this).find('.commforumform').html();
		if(cek == '') $(this).find('.replylink').show(); else $(this).find('.replylink').hide();		
	}).mouseout(function() {		
		$(this).find('.replylink').hide();
	});
	
	$('.commreply-status').click(function() {		
		var rel = $(this).attr('rel');
		var obj = $(this).parents("div:first").children('.commforumform');
		$('.wrapbtnformcancel').show();
		if(oldid == 0) {
			obj.append($('#idformkomentar').html()); 
		} else { 
			obj.append($('#'+oldid).find('.commforumform').html());
		}
		var to = $(this).parents("div:first").find('.idremovebox-name').html();

		if(rel == 1) {
			obj.find('#isipesan').html(obj.find('#isipesan').html()+'\n@'+to+': \n');
		} else {
			var str = $(this).parents("div:first").children('.commforum-content').text();
			obj.find('#isipesan').html(obj.find('#isipesan').html()+'\n[quote] @'+to+': '+str.trim()+' [/quote]\n');
		}
		$('#idformkomentar').hide();
		$('.mood-comm').find('.replylink').hide();
		
		$('#'+oldid).find('.commforumform').html('');
		oldid = $(this).parents("div:first").attr('id');

		obj.find('.btnformcancel').click(function() {
			obj.html('');
			$('.wrapbtnformcancel').hide();
			$('#idformkomentar').show();
			oldid =0;
		});
		$("#isipesan").autogrow().fieldtag();
	});
});
/* End Profil status */
