jQuery(document).ready(function($) {
	$('.hoverCircle').css({
					borderTopLeftRadius: '0',
					borderTopRightRadius: '0',
					borderBottomLeftRadius: '0',
					borderBottomRightRadius: '0'}).hover(
		function(){
			$(this).stop().animate({
					borderTopLeftRadius: '105px'
				},500)
				.animate({
					borderTopRightRadius: '105px'
				},500)
				.animate({
					borderBottomLeftRadius: '105px'
				},500)
				.animate({
					borderBottomRightRadius: '105px'
				},500);
	},function(){
		$(this).stop(true).animate({
					borderTopLeftRadius: '0',
					borderTopRightRadius: '0',
					borderBottomLeftRadius: '0',
					borderBottomRightRadius: '0'
				},500);
	});
});
