$(document).ready(function(){
 
 		// LOGIN & MDP	
		$('#password').focus(function() {
			if ($(this).val() == '************')
				$(this).val('');
		}).blur(function() {
			if ($(this).val() == '')
				$(this).val('************');
		});
		$('#login').focus(function() {
			if ($(this).val() == 'Identifiant')
				$(this).val('');
		}).blur(function() {
			if ($(this).val() == '')
				$(this).val('Identifiant');
		});
 
		$("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			 
			});
		}
   
   $("#input_newsletter").val("votre email");
   $("p.all_actu a").html('» Voir tous nos articles');
   $(".box label").html("Inscription &agrave; la <span>newsletter</span>");
  //$("#listing_calendrier p").html('Autre article de presse');
   
   
   
   /*****LANGUES***********/
   $('ul#first-languages li:not(.selected_language)').css('opacity', 0.3);
		$('ul#first-languages li:not(.selected_language)').hover(function(){
		$(this).css('opacity', 1);
		}, function(){
		$(this).css('opacity', 0.3);
		}); 
		   
 });
