Event.observe(window,'load',function () {
	$$('h2').each(function (el) {
		el.observe('mouseover',function () {
			$(this).setStyle({
				borderStyle:'solid'
			});
		});
		el.observe('mouseout',function () {
			$(this).setStyle({
				borderStyle:'double'
			});
		});
		el.observe('click',function () {
			if (this.next().style.display != 'none') {
				this.next().hide();
			} else {
				this.next().show();
			}
		});
	});
});