function changelang()
{
var URL = document.gotoform.New_URL.options[document.gotoform.New_URL.selectedIndex].value; window.location.href = URL;
} 
function switchLang(o)
{
	var lang = o
	if (o != '0')
		document.location.href="/" + lang + "/";
}
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("langselector");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

$(document).ready(function() {
   $('.lightbox').lightBox({
	txtImage: '#',
	txtOf: '/'
   });
});

function search(url, searchkeys)
{
	document.location.href = url + "?s=" + searchkeys;
}
