     $(document).ready(function(){
          $('.slider').easySlider({
            auto: true,
            continuous: true
          });
        
          $('.navItem').hover(
          function(){
			  $(this).stop();
               $(this).animate({marginTop: "10px", lineHeight: "40px"}, 300);
          },
          function(){
			  $(this).stop();
               $(this).animate({marginTop: "20px", lineHeight: "30px"}, 300);
          }
          );
        
          var speedOfAnim = 300;
          var fadeStrength = 0.6;
          var speedOfGrow = 500;
        
          $('#nextBtn').fadeTo(0, fadeStrength);
          $('#prevBtn').fadeTo(0, fadeStrength);
        
          $('.sliderContainer').hover(
          function(){
	       $('#prevBtn, #nextBtn').stop();
               $('#prevBtn').animate({left: '0px'},speedOfAnim);
               $('#nextBtn').animate({left: '450px'}, speedOfAnim);
          },
          
          function(){
	       $('#prevBtn, #nextBtn').stop();
               $('#prevBtn').animate({left: '-100px'},speedOfAnim);
               $('#nextBtn').animate({left: '550px'}, speedOfAnim);
          });
		
     });
