
	$(document).ready(function() {
		$("a.thickbox, a[rel='lightbox']").fancybox({
			'hideOnContentClick': false,
			imageScale : true
		}); 
		
		$("a#box_ami").fancybox({
			frameWidth : 300,
			frameHeight : 200
		}); 
	
		if(document.all){
			$("a#box_fav").click(function(){
				window.external.AddFavorite(location.href, document.title);
			});
		}else{
		
			$("a#box_fav").fancybox({ 
				'hideOnContentClick': true,
				frameWidth : 400,
				frameHeight : 100			 
			});
		}
	
	
	
	
	$('.sous_menu').hide();
		$('#menu_bas li').hover(
			function(){
				$(this).find('ul').stop(1,1).fadeIn();							
			},
			function(){
				$(this).find('ul').stop(1,1).fadeOut();							
			}
		);
	   
   
	$('#footer_hover').hide();
	
	var hauteurMax = $('#colonne_droite').height();
	var hauteurCol = $('#colonne_gauche').height();	
	if(hauteurCol<hauteurMax){
		$('#colonne_gauche').css('minHeight',hauteurMax);
	}
	
	
	$('#navigation').toggle(
	function(){
				$('#footer_frame').css('height',hauteurMax+100);
				$('#footer_hover').css('height',hauteurMax);
				$('#footer_hover').slideDown(200);
			},
			function(){
			$('#footer_hover').slideUp(50);
			$('#footer_frame').css('height',hauteurMin);
			}
		);
	
	$("#logo").hover(
		function(){$('#logo').stop(1,1).fadeTo("slow",0.7);},
		function(){$('#logo').stop(1,1).fadeTo("fast",1);}
	);
	$(".cta a").hover(
		function(){$('.cta a').stop(1,1).fadeTo("slow",0.7);},
		function(){$('.cta a').stop(1,1).fadeTo("fast",1);}
	);
	});
	
