var sgUrl = function() {
  return {
    changeLang: function (lang) {
      var theUrl = window.location.href;
      var res = theUrl;
      if (theUrl.search(/index.html/i)!=-1 || theUrl[theUrl.length-1] === '/') { // sono nell'index
	res = theUrl.replace(/index\.html\?lang=../i, '');
	res += 'index.html?lang='+lang;
      } else { // una delle altre pag. qualsiasi
	if (lang==='it') {
	  res = theUrl.replace(/english/i, 'italiano');
	  res = res.replace(/francais/i, 'italiano');
	} else if (lang==='en') {
	  res = theUrl.replace(/italiano/i, 'english');
	  res = res.replace(/francais/i, 'english');
	} else if (lang==='fr') {
	  res = theUrl.replace(/italiano/i, 'francais');
          res = res.replace(/english/i, 'francais');
	}
      }
      window.location.href = res;
      return false;
    }
  };
}();