$(document).ready(function(){
    $('#izq p:first').css('background', 'url(/imagenes/faq/flecha-on.gif) no-repeat 25px 2px');
	$('#izq div:first').css('display', 'block');
});

function desplegarFaq(p){
	if ($(p).next().css('display') == 'none') {
		$('#contenido div div').slideUp('normal');
		$('#izq p.faq').css('background', 'url(/imagenes/faq/flecha-off.gif) no-repeat 25px 0px');;
		$('#der p.faq').css('background', 'url(/imagenes/faq/flechagris-off.gif) no-repeat 25px 0px');
		if($(p).parent().attr('id')=='izq')
			$(p).css('background', 'url(/imagenes/faq/flecha-on.gif) no-repeat 25px 2px');
		else
			$(p).css('background', 'url(/imagenes/faq/flechagris-on.gif) no-repeat 25px 0');
		$(p).next().slideDown('normal');
	}
	else {
		$(p).next().slideUp('normal');
		if($(p).parent().attr('id')=='izq')
			$(p).css('background', 'url(/imagenes/faq/flecha-off.gif) no-repeat 25px 0px');
		else
			$(p).css('background', 'url(/imagenes/faq/flechagris-off.gif) no-repeat 25px 0px');
	}	
}	