// JavaScript Document
function _(element)
{
	return document.getElementById(element);	
}
function completar_post(id)
{
	if(_('cont_post_'+id).style.display == 'none')
	{
		$('#cont_post_'+id).show('blind', '',500);
		$('#botones_'+id).hide('blind', '',500);
	}
	else
	{
		$('#cont_post_'+id).hide('blind', '',500);	
		$('#botones_'+id).show('blind', '',500);			
	}	
}
