$(function() {
    $("area").click(function() {
        var url = $(this).attr("href")
        var self = $(this)
        self.css("cursor", "wait")
        $.get(url, {}, function(response) {
            $("#representatives-list").html(response)
            self.css("cursor", "hand")
        })
        return false
    })
})
