$(document).ready(function() {
		document.getElementById('NL_box').innerHTML="<strong>Inscrivez-vous</strong><br />gratuitement &agrave; la lettre<br />d'information";
		$("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			 
			});
		}
});

$(function(){
   $('.clic, p.lien a').hover(function() { //mouse in
   		$(this).stop().animate({ opacity: '0.65' }, 250);
   }, function() { //mouse out
    	$(this).stop().animate({ opacity: '1' }, 250);
   });   
});

$(function() {
	$('#menuVertical li').hover(function() { 
		var nb=$(this).find('.sousMenu > li').length;							 
   		$(this).find('.sousMenu').stop().animate({ 'height': nb*20+'px' }, 200);
		$(this).css({'background':'url(gifs/menu,over.jpg) repeat-x'});
   }, function() { 
    	$(this).find('.sousMenu').stop().animate({ 'height': '0' }, 300);
		$(this).css({'background':'url(gifs/menu.jpg) repeat-x'});
   });   	   
});
