  

URL = window.location.href; 
indexhtml = (URL.indexOf('/index') > -1); 
newshtml = (URL.indexOf('http://www.sifcoasc.com/news-events') > -1); 
aproposdesifcohtml = (URL.indexOf('/propos-de-sifco') > -1); 
industrieshtml = (URL.indexOf('/industries') > -1); 
implantationshtml = (URL.indexOf('/implantations') > -1); 
qualitehtml = (URL.indexOf('/quality-systems') > -1); 
downloadhtml = (URL.indexOf('http://www.sifcoasc.com/resource-library') > -1); 
nouscontacterhtml = (URL.indexOf('/contacter') > -1); 
customeronlyhtml = (URL.indexOf('#') > -1); 
emplotshtml = (URL.indexOf('/emplois') > -1); 
informationslegaleshtml = (URL.indexOf('/informations-legales') > -1); 
sitemaphtml = (URL.indexOf('/site-map') > -1);
sifcoaschtml = (URL.indexOf('#') > -1);
sifcoshtml = (URL.indexOf('#') > -1);


window.onload = function navigations(){ 
if (indexhtml){ 
var x=document.getElementById("page"); 
x.className = 'highlight_class1'; 
} 

else if (newshtml){ 
var x=document.getElementById("new"); 
x.className = 'highlight_class1'; 
} 

else if (aproposdesifcohtml){ 
var x=document.getElementById("propos"); 
x.className = 'highlight_class1'; 
} 

else if (industrieshtml){ 
var x=document.getElementById("industries"); 
x.className = 'highlight_class1'; 
} 

else if (implantationshtml){ 
var x=document.getElementById("implantations"); 
x.className = 'highlight_class1'; 
} 

else if (qualitehtml){ 
var x=document.getElementById("qualite"); 
x.className = 'highlight_class1'; 
} 

else if (downloadhtml){ 
var x=document.getElementById("download"); 
x.className = 'highlight_class1'; 
} 

else if (nouscontacterhtml){ 
var x=document.getElementById("contacter"); 
x.className = 'highlight_class1'; 
} 

else if (customeronlyhtml){ 
var x=document.getElementById("customer"); 
x.className = 'highlight_class1'; 
} 

else if (emplotshtml){ 
var x=document.getElementById("emplois"); 
x.className = 'highlight_class1'; 
} 

else if (informationslegaleshtml){ 
var x=document.getElementById("informations"); 
x.className = 'highlight_class1'; 
} 

else if (sitemaphtml){ 
var x=document.getElementById("sitemap"); 
x.className = 'highlight_class1'; 
}

else if (sifcoaschtml){ 
var x=document.getElementById("sifco_asc"); 
x.className = 'highlight_class1'; 
}

else if (sifcoshtml){ 
var x=document.getElementById("sifco"); 
x.className = 'highlight_class1'; 
}

} 
