// JavaScript Document


function onLoad_js()
{
	AnchorPoint('anchor_country')
	AnchorPoint('anchor_city')
}

function AnchorPoint(anchoring)
{
	document.getElementById(anchoring).focus();
	document.getElementById(anchoring).blur();
}


function hotelAnchors_js(hotel_sku)
{
var arr = document.getElementsByClassName('hotels');
	for (i00 = 0; i00 < arr.length; i00++) {
	   arr[i00].style.backgroundColor= "#ffffff";
	}
/*
document.getElementsById(id02).style.backgroundColor= "#000000"
*/
document.getElementsById(hotel_sku).style.backgroundColor= "#000000";
}
function hotelMouseover_js(hotel_sku)
{
var arr = document.getElementsByClassName('hotels');
	for (i00 = 0; i00 < arr.length; i00++) {
	   arr[i00].style.backgroundColor= "#ffffff";
	}	
document.getElementsById(hotel_sku).style.backgroundColor= "#64E761";	
/*
document.getElementByName(hotel_sku).focus();
	document.getElementByName(hotel_sku).blur();
*/
}
