jQuery(document).ready(function($) {
	$('.circleContent').hide();
	$('.circleText').hover(
		function(e) {
			$(this).addClass('circleHover').children('.circleHelpText').hide();
			$(this).children('.circleContent').hoverFlow(e.type, {
				'height': 'show',
		     	'marginTop': 'show',
		     	'marginBottom': 'show',
		     	'paddingTop': 'show',
		     	'paddingBottom': 'show' 
			  });
		},function(e){
			
			$(this).removeClass('circleHover').children('.circleContent').hoverFlow(e.type, {
				'height': 'hide',
				'marginTop': 'hide',
				'marginBottom': 'hide',
				'paddingTop': 'hide',
				'paddingBottom': 'hide'
			},
			function() {$(this).prev('.circleHelpText').show();}
			);
			
		});
});

