$(document).ready(function(){
	
	$(".toggle_container").hide();

	$("h6.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
	});

});

////////////////////////////////////////////////////////////////////////////////////////////////

jQuery(function() {
	jQuery("img.toggle").mouseover(function() {
			var src = jQuery(this).attr("src").replace("_of", "_on");
			jQuery(this).attr("src", src);
	});

	jQuery("img.toggle").mouseout(function() {
		var src = jQuery(this).attr("src").replace("_on", "_of");
		jQuery(this).attr("src", src);
	});
});

////////////////////////////////////////////////////////////////////////////////////////////////

function changeDisplay(organisme_id){

    block_org   = document.getElementById("org-"+organisme_id);
    link_open   = document.getElementById("open-"+organisme_id);
    link_close  = document.getElementById("close-"+organisme_id);

    link_open.style.display = (block_org.style.display == "none")? "none" : "inline";
    link_close.style.display = (block_org.style.display == "none")? "inline" : "none";
    block_org.style.display = (block_org.style.display == "none")? "inline" : "none";

}

////////////////////////////////////////////////////////////////////////////////////////////////
	
	$(function()
	{
		var $main_content = $('#main_content');
		$main_content.jScrollPane(
			{
				hijackInternalLinks: true,
				animateTo: true,
				showArrows: true,
			}
		);				
		$('a.scroll-to-element-demo').bind(
			'click',
			function()
			{
				var targetElementSelectorString = $(this).attr('rel');
				$main_content[0].scrollTo(targetElementSelectorString);
				return false;
			}
		);                
	});
