function high(which2)
{
	theobject = which2;
	highlighting = setInterval("highlightit(theobject)",50);
}
function low(which2)
{
	clearInterval(highlighting);
	opaStart = 0;
	which2.filters.alpha.opacity = opaStart;
}
function highlightit(curObj)
{	
	if (opaStart<100)
	{
		opaStart += step;
		curObj.filters.alpha.opacity = opaStart;
	}
	else if(window.highlighting) clearInterval(highlighting);
}

function SHOW_DEST_HOT()
{
	step = 5;
	opaStart = 0;
	if(cur_dest_hot>len-2)
	{
		cur_dest_hot = 0;
		loop_dest_hot_show++;
	}
	if(cur_dest_hot>0) 
	{
		dest_hot_obj[cur_dest_hot-1].style.display = 'none';
		low(dest_hot_obj[cur_dest_hot-1]);
		clearInterval(the_interval);
	}
	else if(loop_dest_hot_show>0)
	{
		dest_hot_obj[len-2].style.display = 'none';
		low(dest_hot_obj[len-2]);
		clearInterval(the_interval);
	}
	dest_hot_obj[cur_dest_hot].style.display = '';
	dest_hot_obj[cur_dest_hot].filters.alpha.opacity = 0;
	high(dest_hot_obj[cur_dest_hot]);	
	if(loop_dest_hot_show<11){the_interval = setInterval("SHOW_DEST_HOT()",10000);}
	else if(window.the_interval){clearInterval(the_interval);}
	cur_dest_hot++;
}

function loadImage(img)
{
	myImage = new Image();
	myImage.src = (img);
}