//jQuery.noConflict();
$(document).ready(function(){
	adres=location.href;
	razd=adres.split("/");

	
	
	if(razd[3]=="en" || razd[3]=="en.html"){
		el=$(".menu a");
		for(i=0;i<el.length;i++){
			link=el.eq(i).attr("href");
			if(link.indexOf("http")>-1 && link.indexOf("group-hotel")>-1){
				el.eq(i).attr("href", "/en.html");
			}
		}
	}
	
});





