$(document).ready(
function(){
//	$('.bloc_cols').columnize({width:190});
	$('.bloc_cols').columnize({columns:3});

/* Page Flip on hover
 * Coin haut de page pour flux RSS
*/
	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '50px', 
				height: '52px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '50px', 
				height: '50px'
			}, 200);
		});

/* FEATURED CONTENT SLIDER
 * Les dernières news du portail
*/
	$("#featured > ul").tabs({
		fx:{opacity: "toggle"}
		})
		.tabs(
			"rotate", 8000, true
		);

// Fade sur les derniers sites de l'unesco
	$('.fade').innerfade({
		speed: 1000,
		timeout: 6000,
		type: 'random_start',
		containerheight: '210px'
	});

// Slide auto en fade sur les 3 visuels LGD
	$('ul#portfolio').innerfade({
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: '340px'
	});
	
// Slide auto en fade sur les 3 visuels LGD
	$('ul#portfolio_noel').innerfade({
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: '320px'
	});
});

