$( document ).ready( function(){
	$('.callout').hover(
		function(){ $(this).addClass('callout-hover'); },
		function(){ $(this).removeClass('callout-hover'); }
	);
});

