/*cargarPaginaGet = function( urlpge ){
	jQuery(function($) {  
		$.get(urlpge, function(data){
		   $('contentdiv4ajax').html(data);
			ajaxificarenlaces();
		});			
	});
};
ajaxificarenlaces();
*/

jQuery(function($) {  
	$(document).ready(function(){
		$('.accordion_title').click(function() {
			$(this).next().toggle();
			return false;
		}).next().hide();
		$('#modulo_contenidos').show();
	});
	
});

