$(document).ready(function(){
    $("#portf").hover(function() {
        $("#hint-portf").fadeIn("fast");
    }, function() {
        $("#hint-portf").fadeOut("fast");
    });
    
    $("#services").hover(function() {
        $("#hint-services").fadeIn("fast");
    }, function() {
        $("#hint-services").fadeOut("fast");
    });
    
    $("#opinions").hover(function() {
        $("#hint-opinions").fadeIn("fast");
    }, function() {
        $("#hint-opinions").fadeOut("fast");
    });
    
    
});
