$(function()
{
	$("div#simpleAccordion div").hide();
	$("div#simpleAccordion h2").each(function(i)
	{
		var elementVal = $(this).next("div");
		
		$(this).click(function()
		{
			elementVal.toggle("normal");
		});
	});
});
$(function(){
$("div#simpleAccordion h2").mouseover(function(){
this.style.backgroundColor = "yellow";
this.style.fontWeight = "bold";
this.style.color = "#333";
});
$("div#simpleAccordion h2").mouseout(function(){
this.style.backgroundColor = "black";
this.style.color = "white";
});
});
// JavaScript Document
