$(document).ready(function() {
  
	//$('');
	/*
  $('.loading').hide();
	
  // ONCLICK, APPROVE AND REMOVE THE RED MESSAGE, AND THE MODERATOR BUTTONS
  $('.approve_href').click(function() {
    var this_id = $(this).closest('.declaration').attr('id');
    var href = $(this).attr('href');
		$('#'+this_id).find('.moderator_links').hide();
		$('#'+this_id).find('.loading').show();
    $.post(href,'',function() {
			$('#'+this_id).find('.loading').slideUp(1000);
      $('#'+this_id).find('.errors').slideUp(1000);
    });
    return false;
  });
  
  // ONCLICK, DELETE AND REMOVE THE MESSAGE, AND THE MODERATOR BUTTONS 
  $('.delete_href').click(function() {
    var this_id = $(this).closest('.declaration').attr('id');
    var href = $(this).attr('href');
		$('#'+this_id).find('.moderator_links').hide();
		$('#'+this_id).find('.loading').show();
    $.post(href,'',function() {
			$('#'+this_id).find('.loading').slideUp(1000);
      $('#'+this_id).slideUp(1000);
    });
    return false;
  });
	*/
  
});

/* // BOOKMARKS
function addBookmark(title,url)
{ if (window.sidebar) {
 window.sidebar.addPanel(title, url,"");
 } else if( document.all ) {
 window.external.addFavorite( url, title);
 } else if( window.opera && window.print ) {
 alert('Presiona Ctrol + D. para agregarnos a tus favorios!');
 return true;
 }
} 
*/