$(document).ready(function() {
				
	// Sidebar effect on links			
		jQuery('.useful_links li a').hover(
			function(){

				$(this).stop().animate({
				fontSize: "1.5em",
				marginLeft: "10px"
				}, 200, 'linear', function() {
				$(this).fadeIn(1);
				$(this).css("text-shadow", "0px 1px 10px white");
				
				});
				
				},
				function(){
				$(this).css("text-shadow", "none");
				$(this).stop().animate({
				fontSize: "12px",
				marginLeft: "0px"
				}, 200, 'linear', function() {
				});
				
			});
		

         });

