$(document).ready(function(e){
	
	$('div.callout a').mouseenter(function(e){
		e.preventDefault();
		$(this).css('color','#668f3d');
		$(this).next('p').css('display','block');
	});
	
	$('div.callout a').mouseleave(function(e){
		e.preventDefault();
		$(this).css('color','black');
		$(this).next('p').css('display','none');
	});
	
	$('div.callout p').mouseover(function(e){
		$(this).prev('a').css('color','#668f3d');
		$(this).css('display','block');
	});
	
	$('div.callout p').mouseout(function(e){
		$(this).prev('a').css('color','black');
		$(this).css('display','none');
	});
	
});