jQuery(document).ready(function(){			

jQuery('.title_bar').click(function() {
	var id=$(this).attr('id');
	$('#content_'+id).toggle();
	$(this).toggleClass('open');
	//switch bouton +/-
	if($(this).find('a').html().indexOf('-')!=-1)	$(this).find('a').html('+');
	else if($(this).find('a').html().indexOf('+')!=-1)	$(this).find('a').html('-');
	
	//quelle url charger ?
	var urlToLoad = webAppRootContext + $(this).find('a').attr('id') + '.html';
	
	$('#content_'+id).load(urlToLoad, null, function() {
		jQuery('.content > h3').click(function() {
			var id=$(this).attr('id');
			//affichage
			$('#rep_'+id).toggle();
		});
	});
});


});
