$(document).ready(function() { 
	/* This is basic - uses default settings */ 
	
	//$("a#single_image").fancybox(); /* Using custom settings */ 
	//$("a#inline").fancybox({ 'hideOnContentClick': true }); 
	//$("a.group").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': false });
	
	$("a.press_release").mouseover(function(){
		$("#gauche-content").hide() ;
		$("#gauche-pr").show() ;
		$("#gauche-pr").html('<img src="'+$(this).attr('rel')+'" alt="" class="pr-illustration" />') ;
    }).mouseout(function(){
		$("#gauche-content").show() ;
		$("#gauche-pr").hide() ;
		$("#gauche-pr").html('') ;
    });
});
