	$(document).ready(function() {
		$("a.thickbox, a[rel='lightbox']").fancybox({
			'hideOnContentClick': false,
			'imageScale' : true
		}); 
		$("a#box_ami").fancybox({
			'width': '300px',
			'height': '200px'
		}); 
		$("a.videobox").fancybox({
		  'width'				: '75%',
			'height'			: '75%',
			'autoScale':'false',
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		}); 
		if(document.all){
			$("a#box_fav").click(function(){
				window.external.AddFavorite(location.href, document.title);
			});
		}else{
			$("a#box_fav").fancybox({ 
				'hideOnContentClick': true,
				'width': '300px',
				'height': '200px'		 
			});
		}
		$('#encarts a,#logo,#contact,#votre-diet').hover(function(){
			$(this).stop(true,true).fadeTo(400,'0.5');
		},function(){
			$(this).stop(true,true).fadeTo(400,'1');
		});
		$('.sub').css('display','none');
		$('.subway').hover(function(){$(this).find('div').stop(true,true).fadeIn(250);},function(){});	
		$('.sub').mouseleave(function(){$(this).stop(true,true).fadeOut(500);});	
		$('#votre-diet').click(function(){location.href =("dieteticienne-paris.php");});

		
	});
