  
var acc;
function iniciar(){
		var auto_normal_accordion_options={
	    	panelWidth:210,
	    	panelHeight:"auto",
	    	tabLocation:'inline',
	    	onLoadShowTab:1,
	    	expandedBg:"",
	    	collapsedBg:"",
	    	hoverBg:"",
	    	hoverTextColor:"",
	    	collapsedTextColor:"",
	    	borderColor:"",
	    	expandedTextColor:"",
	    	fixborders:true			//look at this whe you apply padding
	    };
	    var auto_retract_normal_accordion_options={
	    	panelWidth:210,
	    	panelHeight:300,
	    	tabLocation:'inline',
	    	onLoadShowTab:1,
	    	expandedBg:"#f6f6f6",
	    	collapsedBg:"#f6f6f6",
	    	hoverBg:"#f0f0f0",
	    	hoverTextColor:"#222",
	    	collapsedTextColor:"#666",
	    	borderColor:"#ccc",
	    	expandedTextColor:"#666",
	    	fixborders:true		//look at this whe you apply padding
	    	
	    };
	    var normal_accordion_options={
			panelWidth:210,
	   		panelHeight:'auto',
	   		tabLocation:'inline',		
	    	onLoadShowTab:0,
	    	expandedBg:"",
	    	collapsedBg:"",
	    	hoverBg:"",
	    	hoverTextColor:"",
	    	collapsedTextColor:"",
	    	borderColor:"",
	    	expandedTextColor:"",
	    	fixborders:true,		//look at this whe you apply padding
	   		transitionColor: "",
	   		duration:100
	    };
		//Ajax modificado
		new Rico.Accordion($('auto_normal_accordion'), auto_normal_accordion_options);
		new Rico.Accordion($('auto_retract_normal_accordion'),auto_retract_normal_accordion_options);
		acc=new Rico.Accordion($('normal_accordion'), normal_accordion_options);  
		
   }
 function accordionGo(index){
			acc.showTabByIndex(index);
   }
