// JavaScript Document

$(document).ready(function() {
	$('.accordion').children().hide();
	
	$('.accordion h3').show();
		
	$(".accordion h3").mouseover(function(){
		$(this).css({'text-decoration' : 'underline', 'cursor' : 'pointer'});
    }).mouseout(function(){
		$(this).css({'text-decoration' : 'none', 'cursor' : 'default'});
    });
	
	$('.accordion h3').click(function() { 
		$(this).toggleClass('chosen');
		$(this).nextUntil('h3').toggle();
	});
});
