jQuery(function(){

	jQuery('ul.sf-menu').superfish({
		pathClass: 'current_page_parent, li.current_page_ancestor, li.current_page_item',
		dropShadows: false,
		disableHI: true
	});
	
	/* liens vers des pages web */
	jQuery('.iframe, .links_slideshow a, .bookmarks-gallery a').colorbox({
		iframe:	true,
		width:	'98%',
		height:	'98%'
	});
	
	/* liens vers des videos youtube */
	jQuery('.youtube').colorbox({
		iframe:	true,
		width:	650,
		height:	550
	});
	
	/* Images */
	jQuery('a[rel=lightbox], a[rel="lightbox[albulle]"], .wp-caption a').colorbox();
	
	/* Courriels */
	jQuery('.mailto').colorbox({
		inline: true,
		href: function() { return jQuery(this).attr("href"); },
		width:	550,
		height:	540	
	});
});

