// JavaScript Document

$(document).ready(function(){
	$("#tttttt").colorbox({width:"50%", inline:true, href:"#Message"});
	$("a[rel='img_ref1']").colorbox(); 
	$("a[rel='img_ref2']").colorbox(); 
	$("a[rel='img_ref3']").colorbox(); 
	$("a[rel='img_ref4']").colorbox(); 
	
	// SURVOL DES PICTOS	
	jQuery('div.picto').hover(
		function()
		{
			$(this).children('img').fadeIn('normal'); //rollover
		},
		function()
		{
			$(this).children('img').fadeOut('normal'); //rollout
		}
	); 
	jQuery('div.picto2').hover(
		function()
		{
			$(this).children('img').fadeIn('normal'); //rollover
		},
		function()
		{
			$(this).children('img').fadeOut('normal'); //rollout
		}
	);

	$("#slider").easySlider({
		controlsShow: true,
		speed: 800,
		auto: true,
		pause: 6000,
		continuous: true
	});

 
});
function message()
{
	$.colorbox({width:"50%", inline:true, height:"50%",href:"#Message"});
	
}

