// interactive page links
$(document).ready(function(){
  $('#citiesStates').hide('slow');
});

$(function() {
    
	$('.more a.newsletter').click(function(event){
	  // hide more info link
	  $('.more').hide();
	  // show more info
	  $('.mark').show('slow');
	  // don't follow the link
	  event.preventDefault();
	});
	$('.mark a.close').click(function(event){
	  $('.mark').hide('slow');
	  $('.more').show('slow');
	  event.preventDefault();
	});
	$('.more a.cities').click(function(event){
	  $('div#citiesStates').show('slow');
	  event.preventDefault();
	});
	$('.prices a.close').click(function(event){
	  $('div#citiesStates').hide('slow');
	  event.preventDefault();
	});
  });
