$(document).ready(function() {
	
	var fadeDuration = 150; //time in milliseconds
      
      $('#nav ul li.default a').hover(function() {
        $(this).stop(true, true).animate({ paddingLeft: '40px' }, fadeDuration);
      }, function() {
        $(this).stop(true, true).animate({ paddingLeft: '30px' }, fadeDuration);       
      });
      
      
      $('#nav ul li.sub-nav a').hover(function() {
        $(this).stop(true, true).animate({ paddingLeft: '60px' }, fadeDuration);
      }, function() {
        $(this).stop(true, true).animate({ paddingLeft: '50px' }, fadeDuration);       
      });
      
	
});