$(document).ready( function() {

	/* MEDIATHEQUE */
	/*
	$('.dailymotion_inline_item').each( function() {
		var item = $(this);
		$(this).find('.dailymotion_embeded').hide();
		$(this).find('.dailymotion_thumbnail').click( function(e) {
			e.preventDefault();
			item.find('.dailymotion_embeded').dialog({
				minHeight: 420,
				minWidth: 580,
				modal: true
			});
		});
		$(this).find('.dailymotion_desc a.more').click( function(e) {
			e.preventDefault();
			$(this).prev('.hide').toggle();
		});
	});
	*/

	/* IMAGE */
	/*
	$("#content .content img").each(function() {
		var src = $(this).attr('src');
		$(this).wrap('<a rel="lightbox" href="'+src+'" />');
	});

	$("a[rel='lightbox']").slimbox();
	*/
});

