/* based on a method by Stu Nicholls, http://www.stunicholls.com/various/more_again.html */

/* Note: keep </H2><div class="hide"> together in the HTML; separating them will break the style in some browsers! */

if (document.getElementsByTagName) {
	document.writeln('<STYLE TYPE="text\/css"><!--');
	document.writeln('DIV#sidebar H2.switch {color:#004499; font-weight:normal; }'); /* H2 class: "switch" when links are hidden */
	document.writeln('DIV#sidebar H2.switch:hover {text-decoration:underline; }');
	document.writeln('DIV#sidebar H2.off {color:#000; font-weight:bold; }'); /* H2 class: "switch off" when links appear */
	document.writeln('DIV#sidebar H2.off:hover {text-decoration:none; }');
	document.writeln('DIV#sidebar H2 {color:#000; font-weight:bold; }'); /* H2 class: "switch" when links are visible */

	document.writeln('.switch {cursor:pointer; }');
	document.writeln('H2 b img, H3 b img {width:14px; height:12px; background:url(\/images\/f-open4.gif); margin-bottom:-1px; }');
	document.writeln('.hide {display:none; }'); /* div class: "hide" when links are hidden */
	document.writeln('.show {position:relative; display:block; }'); /* div class: "show" when links appear */
	document.writeln('--><\/STYLE>');
}