$(function() {
	$('.ngg-galleryoverview a').lightBox({
		fixedNavigation:false,
		imageLoading: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-ico-loading.gif',
		imageBtnClose: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-btn-close.gif',
		imageBtnPrev: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-btn-prev.gif',
		imageBtnNext: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-btn-next.gif'
	});
	$('.photo a').lightBox({
		fixedNavigation:false,
		imageLoading: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-ico-loading.gif',
		imageBtnClose: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-btn-close.gif',
		imageBtnPrev: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-btn-prev.gif',
		imageBtnNext: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-btn-next.gif'
	});
	$('a[rel=lightbox]').lightBox({
		fixedNavigation:false,
		imageLoading: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-ico-loading.gif',
		imageBtnClose: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-btn-close.gif',
		imageBtnPrev: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-btn-prev.gif',
		imageBtnNext: 'http://www.lantidote-paris.com/wp-content/themes/antidote/img/lightbox-btn-next.gif'
	});
	
	
});





$(function () {
  if ($.browser.msie && $.browser.version < 7) return;
  $('#navigation li')
    .removeClass('highlight')
    .find('a')
    .append('<span class="hover" />').each(function () {
      
      var $span = $('> span.hover', this).css('opacity', 0);
      
      $(this).hover(function () {
        $span.stop().fadeTo(500, 1);
      }, function () {
        $span.stop().fadeTo(900, 0);
      });
    });
});

$(document).ready(function () {
	$('.top').click(
		function(){				
			$.scrollTo( '#header', 800 ); return false;
		}
	);		

	$('#footer ul').removeClass("survol");
	$('#footer ul a').hover(
		function(){		
			//$('#footer a').stop().fadeTo(500, 0.9);
			//$(this).stop().fadeTo(500, 0.9).
			$(this).stop().animate( { backgroundColor:"#ffcc00",opacity: 0.9,color:"#000"}, 500 );




		},
		function(){			
			//$(this).stop().fadeTo(900, 0.4);
			$(this).stop().animate( { backgroundColor:"#000",opacity: 0.5,color:"#ffcc00"}, 900 );
		}
		
	);	
	
	
	$('#colonne3 ul').removeClass("survol");
	$('#colonne3 ul a').hover(
		function(){		
			//$('#footer a').stop().fadeTo(500, 0.9);
			//$(this).stop().fadeTo(500, 0.9).
			$(this).stop().animate( { backgroundColor:"#ffcc00",opacity: 0.9,color:"#000"}, 500 );
			$(this).children("span").stop().animate( {color:"#000"}, 500 );



		},
		function(){			
			//$(this).stop().fadeTo(900, 0.4);
			$(this).stop().animate( { backgroundColor:"#000",opacity:0.5,color:"#fff"}, 900 );
			$(this).children("span").stop().animate( {color:"#ffcc00"}, 900 );
		}
		
	);	
	
	
	
});


