$(document).ready( function() {
    $.each($('area'), function (index, item) {
	$(item).focus( function() {
	    this.blur();
	});
    });
});
