jQuery(document).ready(function(){
	$("a.toggle").each(function() {
		var id = this.href.match(/#(.+)$/)[0];
		this.toggleObject = $(id);
		this.toggleObject.hide();
	}).click(function(){
		this.blur();
		this.toggleObject.toggle('fast');
		return false;
	});
});