$(document).ready(function() {
						   
		$(".blq_titulo").css("cursor","pointer");		   	
	  		
		  $(".blq_titulo").each(function(i) {
				$(this).html($(this).html()+'<img class="icon_open" src="images/closed.gif">');			
	 			if ($(this).attr('class').split(' ').slice(-1)=="close") {
					$(this).parent().eq(0).children('.blq_contenido, .blq_int').slideToggle(200);
                	$(this).children('img.icon_open').attr('src', 'images/opened.gif');
				}
		  });
		  
		  
		  $(".blq_titulo").click(function() {
				if ($(this).parent().eq(0).children('.blq_contenido').is(':visible')) {					
					$(this).parent().eq(0).children('.blq_contenido, .blq_int').slideToggle(200);
                	$(this).children('img.icon_open').attr('src', 'images/opened.gif');
				} else { 
					$(this).parent().eq(0).children('.blq_contenido, .blq_int').slideToggle(200);
                	$(this).children('img.icon_open').attr('src', 'images/closed.gif');
				}

            });
	  
	  
});	