$(document).ready(function() {
	$('p.closePar').hide(); 
	$('a.title').click(function() {
		$(this).css("background","url(images/arrowOpen.gif) 10px 7px no-repeat #e6e5e6");
		$(this).siblings('a.title').css("background","url(images/arrowClose.gif) 10px 6px no-repeat #e6e5e6");
		$(this).next('p.closePar:hidden').slideDown('fast')
		.siblings('p.closePar:visible').slideUp('fast');
		return false;
  	})
});

