$(document).ready(function() {

    // Services Rollover

    $('#services ul li 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

