
$(document).ready(function() {


//More button
			
			var navDuration = 150; //time in miliseconds
			
      $('a.more').hover(function(e) {
            $(this).hoverFlow(e.type, { paddingRight: "25px" }, navDuration);            
        }, function(e) {
            $(this).hoverFlow(e.type, { paddingRight: "20px" }, navDuration);
        });
		        
        
//Recent Milestones Rollover

	$('#recent dt a').hover(function(e) {
          $(this).find('.home-icon').hoverFlow(e.type, { opacity:0 }, 700);
				}, function(e) {
          $(this).find('.home-icon').hoverFlow(e.type, { opacity:1 }, 400);
     });
     



}); //end
	
