// JavaScript Document
	var current_div = '.cyclemap-display-first';
	var next_div = '.cyclemap-display-second';


$(document).ready(function() {
  $('.cyclemap-display-first').load('map.htm');
});




$(document).ready(function() {
  $('div#interactive-map div > a').click(function(ev) {
		var tmp_div = '';
		ev.preventDefault();
		$('div#interactive-map div > a').removeClass('selected');
		$(this).addClass('selected');
    $(next_div).load($(this).attr('href'), null, function() {
		  $(current_div).fadeOut('slow', function() {
  		  $(this).html($(next_div).html());
				$(next_div).html('');
			  $(this).fadeIn('slow');
  		});		
		});
  });
});



