jQuery('document').ready(function(){
	jQuery('.expander > h3').mouseover(function(){
		jQuery(this).css('color','#ef7d00');
		jQuery(this).next('.pop_up').fadeIn('300');
	});
	jQuery('.expander > h3').mouseout(function(){
		jQuery(this).css('color','');
		jQuery(this).next('.pop_up').fadeOut('300');
	});
});
