function setFont(id) {
	var size = 10;
	$('#string').css('font-size', size);
	while ($('#string').width() + 20 < $('#string').parent().width()) {
		size = $('#string').css2('font-size') + 1;
		$('#string').css('font-size', ($('#string').css2('font-size') + 1) + 'px');
	}
	$('#' + id).css('font-size', size);
}

if (window.addEventListener) window.addEventListener ('load', startPage, false);
else if (window.attachEvent) window.attachEvent ('onload', startPage);

function startPage()
{
    var id = $('#currentMenu').val();   
    document.getElementById(id).className='top_ref activ_service';
}
/*
function updateColumnsHeight() {
	$('#rightHotels').height('5%');
	$('#hotelsMenu').height('5%');
	height = $(document).height() - 91 - 25;
	if ($.browser.msie) height -= 2;
	$('#rightHotels').height(height - 37);
	$('#hotelsMenu').height(height - 35);
}*/
