/*
	This .js file loaded in every page 
*/

function nodeDelete(event,iThis){
	event.cancelBubble = true;
	var iNid=$(iThis).attr('nid');
	$(iThis).html('<img src="/misc/Cicle.gif">').unbind();
	$.post('/node_delete_ajax',{nid:iNid},function(data){
		$(iThis).before('Deleted');
		$(iThis).parent().find('.lightbox-links').remove();
		$('a#'+iNid+'').parent().parent().animate({opacity:'hide'},500);
	});	
}
