/* slightly modified accordion script */
/* original script adapted from: http://www.learningjquery.com/2007/02/more-showing-more-hiding */
/* doc last changed: 23042007 | by j.wessel (cs) | v.0.0.1 */ 
$(document).ready(function() {
  $('div#accordion:eq(0)> div').hide();
  $('div#accordion:eq(0)> h2').click(function() {
	$(this).next().slideToggle('slow');
	// $(this).toggleClass("act"); /* change the rollover status */
  });
  $('div#accordion:eq(0)> h2').mouseover(function() {
	$(this).addClass("act"); /* change the rollover status */
  });
  $('div#accordion:eq(0)> h2').mouseout(function() {
	$(this).removeClass("act"); /* change the rollover status */
  });

  /* medium */
  $('div#accordion:eq(0)> h2.medium').mouseover(function() {
	$(this).addClass("mediumact"); /* change the rollover status */
  });
  $('div#accordion:eq(0)> h2.medium').mouseout(function() {
	$(this).removeClass("mediumact"); /* change the rollover status */
  });

  /* wide */
  $('div#accordion:eq(0)> h2.wide').mouseover(function() {
	$(this).addClass("wideact"); /* change the rollover status */
  });
  $('div#accordion:eq(0)> h2.wide').mouseout(function() {
	$(this).removeClass("wideact"); /* change the rollover status */
  });
});