var tour_country = '';
function showTOs(cid){
	if (tour_country != cid){
		$('.hide, .nothide').slideUp(250);
		$('#tos'+cid).delay(250).slideDown(250);
		//$('.cnames').css({'font-weight':'normal'});
		//$('#c'+cid).css({'font-weight':'bold'});
		$('.bold').removeClass('bold');
		$('#c'+cid).addClass('bold');
		$('.to_countries_off').removeClass('to_countries_off');
		$('#to_countries').addClass('to_countries_on');
		tour_country = cid;
	}
	return false;
}

var hotel_country = '';
function toggleList(cid){
	if (hotel_country != cid){
		$('.toinco').slideUp('slow');
		$('.tour'+cid).slideDown('slow');
		hotel_country = cid;
	}
	return false;
}

function hideList(cid){
	$('.tour'+cid).slideUp('slow');
	hotel_country = '';
	return false;
}
