(function($){

	$(document).ready(function(){
	
		/* Circle Expansion
		-----------------------*/		
		$('.menu_circle').hover(
			function(){
				$('.circle',this)
					.stop()
					.animate({width : '170px', height : '170px', 'margin-top' : '-85px', 'margin-left' : '-85px'  }, 100);
			},
			function(){
				$('.circle',this)
					.stop()
					.animate({width : '150px', height : '150px', 'margin-top' : '-75px', 'margin-left' : '-75px'  }, 100);
			}
		);
		
	});
		
})(jQuery);// JavaScript Document
