﻿$("#results a.page-nav").live("click", function() {

	$.get($(this).attr("href"), function(response) {
		$("#results").html(response);
		initializeMarkers();
	});
	
	return false;

});

