$(document).ready(function(){
   
   $('#side_nav li a').hover(function(){
      $(this).animate({ paddingLeft: '15px'}, 100).animate({ paddingLeft: '10px' }, 50 );
   }, function(){
      $(this).animate({ paddingLeft: '5px'}, 100);
      
   });
   
   
   
   $('#main_nav li a').hover(
      function(){
         $(this).animate({ paddingBottom: '10px'},100);
         $(this).parent().animate({ marginTop: '115px'}, 100);

      }, function(){
         $(this).parent().animate({ marginTop: '120px'}, 100);
      });
   
   
$('#main_photo').innerfade({ 
   type: 'random',
   speed: 'slow',
   timeout: '3000',
   containerheight: '314px'
});
      
      
$('.colorbox').colorbox();

});