$(document).ready(function() {
	
	$('#ny_canvas').hide();
	$('#fl_canvas').hide();

	$("#slider").easySlider({
		auto: true,
		continuous: true,
		numeric: true,
		pause: 5000,
		speed: 500
	});
	
	$('#directionsBtn').click(function() {
		var office = $('#offices input[type=radio]:checked').val();
		if(office == 'New York') {
			$('#ny_canvas').show();
		}
		if(office == 'Florida') {
			$('#fl_canvas').show();			
		}
	});

}); 
