$(document).ready(function(){
	
	//$("#radio h3").eq(0).addClass("active");
	//$("#radio p").eq(0).show();
	//$("#radio h3").eq(0).css( {backgroundPosition:"left 2px"} );

	$("#radio_lista h3").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		//$(this).toggleClass("active");
		//$(this).siblings("h3").removeClass("active");
		//$(this).css( {backgroundPosition:"left 2px"} );
		//$(this).siblings("h3").css( {backgroundPosition:"left -44px"} );
	});

});
