$(document).ready(function(){
$("#postnav-next, #postnav-previous").fadeTo("10000", 0.3); // This sets the opacity of the thumbs to fade down when the page loads

$("#postnav-next, #postnav-previous").hoverIntent({
		sensitivity: 5, 
		interval: 25, 
		over: fadeIn, 
		timeout: 0, 
		out: fadeOut
    });
    
  
    
});

function fadeIn(){  $(this).animate({opacity: 0.80},150);}
function fadeOut(){ $(this).animate({opacity: 0.30},300);}