
$(document).ready(function(){


$('.services_microsites ul li').hover(
  function(){
  $(this).animate({'marginLeft':'40px',
                   'paddingLeft':'20px'})
  }
  ,
  function(){
  $(this).animate({'marginLeft':'50px',
                   'paddingLeft':'10px'})

  })

})