// ready state
$(document).ready(function() {
	
	//hide all accordion content except first one
	$(".accordion div").hide();
	$('.accordion div:eq(0)').slideDown(0);
	
	//change the cursor on the headers
	$('.accordion h3').css('cursor','pointer');
	$('.accordion h3').hover(function ()
	{
		$(this).css('background-position','left bottom');
	},
	function()
	{
		$(this).css('background-position','left top');
	});
	
	//insert the arrows
	$('.accordion h3').append('&raquo;');
	
	//accordion button action
	$('.accordion h3').click(function() {
		$('.accordion div').slideUp('fast');	
		$(this).next().slideDown('fast');
	});

});
