/*
Script by Stephen Shellard 2000 (c)
This site created and optimized by Sunstreams Research
*/
var type=navigator.appName
if (type=="Netscape")
var lang = navigator.language
else
var lang = navigator.userLanguage

//cut down to first 2 chars of country code
var lang = lang.substr(0,2)

// english
if (lang == "en")
window.location.replace('english.html')

// italian
else if (lang == "it")
window.location.replace('italian.html')

// if none of above (default to English or any other)
else
window.location.replace('english.html')