$(document).ready(function(){ 
	$("h4").click(function () { 
		$(this).next().slideToggle("fast");
		pos = $(this).css('background-position');
		open = {
			backgroundPosition: '0 -38px',
			marginBottom:'0px',
			color: '#e95b27'
		};
		close = {
			backgroundPosition: '0 3px',
			marginBottom:'5px',
			color: '#504d4e'
		};
		if (pos == '0px 3px') {
			$(this).css(open); 
		} else {
			$(this).css(close); 
		}
	});
	$("h4").each(function (i) {
		phead = $(this);
		pfaq = $(this).next();
		pfaq.hide();
		pfaq.css('paddingLeft', '12px');	
	
	});
});