$(document).ready(function () {


/* menu en selectbox */ 
	$('.selectbox ul').hide();
	$('.selectbox_bt').hover(
		function()
		{	
			$(this).find('.selectbox ul').show();		
		},
		function()
		{
			$(this).find('.selectbox ul').hide();
		}
	);
	
	
	$('.diffusion').click(function(){
			$(this).find('.resume').toggle();
		}
	);
});

