$(document).ready(function(){	
	$('a.fancybox').fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	200, 
		'speedOut'		:	200, 
		'overlayShow'	:	false						 
	});
	$('#slider').bxSlider({
		mode:'fade',
		auto:1,
		controls:0,
		pager:0
	});
	$('#logo,#contact').hover(
	function(){
		$(this).stop(1,1).animate({'top':'-5px'},150);
	},function(){
		$(this).stop(1,1).animate({'top':'0px'},150);								   
	});
	$('ul.toggle img').hover(
	function(){
		$(this).stop(1,1).fadeTo(250,'0.5');
	},function(){
		$(this).stop(1,1).fadeTo(250,'1');							   
	});
	var totalHeight = $('#container').height();
	
	$('#container .aside a').first().addClass('highlight');
	$('div:not(#header)').css('display','none').fadeIn(500);
	$('#header').css('top','-'+totalHeight+'px').animate({'top':'0px'},750);
	$('font').attr('size',null);	
	$('.toggle').hide();
	$('h2.titre').click(function(){
		$('.toggle').stop(1,1).slideUp();
		$(this).next('.toggle').stop(1,1).slideToggle();
	});
});
