// UGC Distribution | e-TF1 Web Agency | Licensed under MIT License

// Enable keyboad navigation on the skip menu
var links = document.getElementById('nav-skip').getElementsByTagName('a');
for(var i=0,j=links.length;i<j;i++){
	links[i].onfocus = function(){
        this.parentNode.parentNode.className = 'active';
	}
	links[i].onblur = function(){
        this.parentNode.parentNode.className = '';
	}
}
if($('mail')){
// Fill the newsletter field with a default text
var newsletterDefault = 'e-mail';
var mail = document.getElementById('mail');
mail.value=newsletterDefault;
mail.onfocus = function(){
	if(this.value==newsletterDefault) this.value='';
}
mail.onblur = function(){
	if(this.value=='') this.value=newsletterDefault;
}
}