$(document).ready(function()
{
	$(".btn-slide").click(function()
	{
    	$(this).next().slideToggle("slow");

		$(this).toggleClass("active");
		
		if($(this).css("background") == "transparent url(/images/upArrow.gif) repeat scroll 0% 0%")
		{$(this).css({ "background":"url(/images/downArrow.gif)"})}
		else
		{$(this).css({ "background":"url(/images/upArrow.gif)"})}
    });
});
