/**
	Script specific to the homepage
*/

$().ready(function() {


	$('#accordion h2').mouseenter(function() {
		$(this).css('cursor','pointer');
	}).mouseleave(function() {
		$(this).css('cursor','none');
	});

	$('#accordion h2').click(function(){ $(this).next().stop(true,true).slideToggle(500); });
});
