$(document).ready(function(){
	
	$(".top_nav_link").hover(function() { 
		$(this).animate({textShadow: "#22add6 0px 0px 15px"},0);
	}, function() { 
		$(this).animate({textShadow: "#000000 0 0 0"});
	});
	
	$('#top_middle_right').click(function() {
	  $('#top_middle_center').animate({
		width: 'slide',
	  }, {
		duration: 2000,
		specialEasing: {
		  width: 'linear',
		  height: 'easeOutBounce'
		},
		complete: function() {
		  $(this).after('<div>Animation complete.</div>');
		}
	  });
	});


});

