// This code is executed after the page is rendered (including images).
// Requires jQuery.

$(window).load(function()
{
	// Utilisation du plugin "prettyPhotos" pour l'affichage des versions agrandies des images.
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal',		/* fast/slow/normal */
		opacity: 0.7,						/* Value between 0 and 1 */
		showTitle: true,					/* true/false */
		allowresize: true,					/* true/false */
		default_width: 500,
		default_height: 344,
		counter_separator_label: ' sur ',	/* The separator for the gallery counter 1 "of" 2 */
		theme: 'facebook',				/* light_rounded / dark_rounded / light_square / dark_square / facebook */
		hideflash: false,					/* Hides all the flash object on a page, set to TRUE if flash appears over prettyPhoto */
		wmode: 'opaque',					/* Set the flash wmode attribute */
		autoplay: true,					/* Automatically start videos: True/False */
		modal: false,
		ie6_fallback: true,
		social_tools:false
	});
});
