$(document).ready(function(){
    $('ul.accordion').accordion({ 
        autoheight: false,
        header: ".opener",
        active: '.selected',
        selectedClass: 'active',
        alwaysOpen: false,
        event: "click"
    });
	var _hold = $('.attorney-block');
	if(_hold.length > 0) {
		var text_hold = _hold.find('.attorney-bios');
		_hold.find('map area').each(function() {
			this.box = text_hold.find('.' + this.className);
			this.b_h = this.box.children().outerHeight();
			this.onmouseover = function() {
				this.box.animate({height: this.b_h}, {queue:false, duration:300});
			}
			this.onmouseout = function() {
				this.box.animate({height: 0}, {queue:false, duration:300});
			}
		});
	}
});