$(document).ready(function (){

	 $("div.utilidad_brujula").hide();
		
	$(".btnBrujula a").click(function () {
		 
		var b = "#detalleBrujula"+this.id;
		var c = "#info_brujula"+this.id;

//alert($("#brujula_cabecera").length);
//for (i=0; i<=$("#brujula_cabecera").length; i++)

		
		//pliega
 		if ($(b).is(':visible') ) {
			$(this).css({ background:"url(/img/ico_flecha_redonda.gif) no-repeat 0 center" });												  
		    $(c).css({ backgroundColor:"#F3F3F3" });
			$(b).hide();
 			}
		//despliega	
 		else {
			$(this).css({ background:"url(/img/ico_flecha_redonda.gif) no-repeat 0 center" });
		    $(c).css({ backgroundColor:"#eaebe8" });
  			$(b).slideToggle("slow");
 		} 
	  return false;
    	});
});
 
  

