$(function(){
	$("a.desplegarPlegar").bind("click",function(e){
												 if($(this).prev(".desplegarDiv").is(":visible"))
												 	//$(this).html("<img src=\"../img/null.gif\" width=\"17\" height=\"1\" />");
													$(this).html(" ... ");
												else
													$(this).html("ocultar");
												 $(this).prev(".desplegarDiv").slideToggle();
												 e.preventDefault();
												 
												 });
});
