function updateLeftTours(city, country){
	$('#bestToursDivLeft').load('/hot/left/index.html?ajax=1&countryID='+country+'&cityID='+city);
}

function updateTours(city, page){
	var s = $('#bestToursForm').serialize();
	$('#bestToursDiv').load('/hot/'+city+'/index.html?&ajax=1&page='+page+'&'+s);

   
	var c = $('html,body').scrollTop();
	var x = $('#contentID').offset().top;
	if (c > x)
	{
		$('html,body').animate({scrollTop: x}, 500);
	}
}

function updateSpecials(city, page){
	$('#specialPropositionsID').load('/hot/'+city+'/index.html?special=1&ajax=1&page='+page);
}

