$(document).ready(function(){
	$('#weather .weather-area.hidden').hide().removeClass('hidden');
});

function openWeatherDialog()
{
	$('#weather .weather-area.selected').fadeOut(300);
	$('#weather-dialog').animate({top:0}, 300, 'swing');
}

function closeWeatherDialog()
{
	$('#weather .weather-area.selected').fadeIn(300);
	$('#weather-dialog').animate({top:-130}, 300, 'swing');
}

function updateWeather()
{
	$('#weather .weather-area.selected').removeClass('selected');
	$('#weather-for-' + $('#weather-drop-down').val()).addClass('selected');
	closeWeatherDialog();
}
