

function pruebas(id_1,id_2){
//$(document).ready(function() {
	 
	//ACCORDION BUTTON ACTION (ON CLICK DO THE FOLLOWING)
	//$('.mazzi').click(function() {

	//document.getElementById(id_3).style.display="block";
	//document.getElementById(id_3).style.display="none";

		//REMOVE THE ON CLASS FROM ALL BUTTONS
		$(id_1).removeClass('on');
		  
		//NO MATTER WHAT WE CLOSE ALL OPEN SLIDES
	 	$(id_2).slideUp('normal');
   
		//IF THE NEXT SLIDE WASN'T OPEN THEN OPEN IT
		//if($(this).next().is(':hidden') == true) {
		if($(id_2).is(':hidden') == true) {
			//'.accordiones'
			
			//ADD THE ON CLASS TO THE BUTTON
			$(id_2).addClass('on');
			  
			//OPEN THE SLIDE
			//$(this).next().slideDown('normal');
			$(id_2).slideDown('normal')
		} 
		  
	// });

	/********************************************************************************************************************
	CLOSES ALL S ON PAGE LOAD
	********************************************************************************************************************/	
	//$('.accordionContents').hide();
	//$('.accordiones').slideDown('normal')
//});
}


function me_cambio(id_1,id_2,id_3, objActual){
//$(document).ready(function() {
	 
	//ACCORDION BUTTON ACTION (ON CLICK DO THE FOLLOWING)
	//$('.mazzi').click(function() {

	//document.getElementById(id_3).style.display="block";
	//document.getElementById(id_3).style.display="none";

		//REMOVE THE ON CLASS FROM ALL BUTTONS
		$(id_1).removeClass('on');
			//  document.getElementById(id_3).style.backgroundPosition="top";
			$(objActual).removeClass("activado");
		//NO MATTER WHAT WE CLOSE ALL OPEN SLIDES
	 	$(id_2).slideUp('normal');
   
		//IF THE NEXT SLIDE WASN'T OPEN THEN OPEN IT
		//if($(this).next().is(':hidden') == true) {
		if($(id_2).is(':hidden') == true) {
			//'.accordiones'
			
			//ADD THE ON CLASS TO THE BUTTON
			$(id_2).addClass('on');
			  
			//OPEN THE SLIDE
			//$(this).next().slideDown('normal');
			$(id_2).slideDown('normal')
				//document.getElementById(id_3).style.backgroundPosition="bottom";
				$(objActual).addClass("activado");
		} 
		  
	// });

	/********************************************************************************************************************
	CLOSES ALL S ON PAGE LOAD
	********************************************************************************************************************/	
	//$('.accordionContents').hide();
	//$('.accordiones').slideDown('normal')
//});
}
