

$(function() {


	$('.nouvelle').colorbox({
		innerWidth : 400,
		innerHeight : 620,
		onOpen : function () {
			$('#flash').css ('display', 'none');
		},
		onClosed : function () {
			$('#flash').css ('display', 'block');
		}
	});

	$('#link_a_emporter').colorbox({
		innerWidth : 400,
		innerHeight : 550,
		onComplete : function () {
			$('#carte').css ({
				'position' : 'static',
				'margin' : '10px',
				'width' : 380,
				'height' : 'auto'
			})
		}
	});
        	$('.nouvelle_soiree').colorbox({
		innerWidth : 500,
		innerHeight : 550,
		onComplete : function () {
			$('#carte').css ({
				'position' : 'static',
				'margin' : '10px',
				'width' : 380,
				'height' : 'auto'
			})
		}
	});

});
