$j = jQuery.noConflict();
$j(document).ready(function(){
    $j('#villa_location_map area').click(function() {
        $j('.maphighlight').hide();
        $j('#'+this.title.replace(/ /g, '_')).show();
        $j('#'+this.title.replace(/'/g, '')).show();
        return false;
    } );

});


