/* accordion script */

/* original script adapted from: http://www.learningjquery.com/2007/02/more-showing-more-hiding */



$(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 */

  });

});



$(document).ready(function() {

  $('div#secondaccordion:eq(0)> div').hide();

  $('div#secondaccordion:eq(0)> h2').click(function() {

	$(this).next().slideToggle('slow');

	// $(this).toggleClass("act"); /* change the rollover status */

  });

  $('div#secondaccordion:eq(0)> h2').mouseover(function() {

	$(this).addClass("act"); /* change the rollover status */

  });

  $('div#secondaccordion:eq(0)> h2').mouseout(function() {

	$(this).removeClass("act"); /* change the rollover status */

  });

});



$(document).ready(function() {

  $('div#thirdaccordion:eq(0)> div').hide();

  $('div#thirdaccordion:eq(0)> h2').click(function() {

	$(this).next().slideToggle('slow');

	// $(this).toggleClass("act"); /* change the rollover status */

  });

  $('div#thirdaccordion:eq(0)> h2').mouseover(function() {

	$(this).addClass("act"); /* change the rollover status */

  });

  $('div#thirdaccordion:eq(0)> h2').mouseout(function() {

	$(this).removeClass("act"); /* change the rollover status */

  });

});

