/*	oxalys js	*/



$(document).ready(function(){
// nav_main
	$('div.nav_main li a').hover(
		function(){
			$(this).addClass('on');
		},
		function(){
			$(this).removeClass('on');
		}
	);



// bloc foldable bio
	
	//ajouter la div
	$('div.bloc_foldable .bloc_foldable_header h3').each(
		function(){
			$(this).after('<div class="bt_action" title="Afficher la suite"></div>');
		}
	
	);
	
	//action
	$('div.bloc_foldable .bloc_foldable_header .bt_action').click(
		function(){
			$(this).parents('div.bloc_foldable').toggleClass('on');
		}
	);



// like target blank
	$('a.blank').click(
		function(){
			window.open(this.href); 
			return false;
		}
	
	);



});




















