	$(document).ready(function(){
   
   $(".mid").hover(function(event){
     $(".shad_l").animate({ 
     		top:"-7px",
				left:"8px"
      }, { queue:false, duration:200 } );
      $(".shad_r").animate({ 
     		top:"-7px",
				right:"8px"
      }, { queue:false, duration:200 } );
   });
   
   $(".mid").mouseout(function(event){
     $(".shad_l").animate({ 
     		top:"0px",
				left:"3px"
      },{ queue:false, duration:200 } );
      $(".shad_r").animate({ 
     		top:"0px",
				right:"2px"
      }, { queue:false, duration:200 } );
   });
   
   $(".left").hover(function(event){
     $(".shad_l").animate({ 
     		top:"-7px",
				left:"8px"
      }, { queue:false, duration:200 } );
   });
   
   $(".left").mouseout(function(event){
     $(".shad_l").animate({ 
     		top:"0px",
				left:"3px"
      },{ queue:false, duration:200 } );
   });
   
   $(".right").hover(function(event){
      $(".shad_r").animate({ 
     		top:"-7px",
				right:"8px"
      }, { queue:false, duration:200 } );
   });
   
   $(".right").mouseout(function(event){
      $(".shad_r").animate({ 
     		top:"0px",
				right:"2px"
      }, { queue:false, duration:200 } );
   });
   
   $(".right").attr('href',$("#link1")[0].href);
   $(".left").attr('href',$("#link1")[0].href);
   $(".mid").attr('href',$("#link1")[0].href);
 	});
