$(document).ready(function() {
    $('.findhome-button').hoverIntent(
        function(){
            if( navigator.appName == "Microsoft Internet Explorer") {
                $(this).children().show();
            }
            else {
                $(this).stop().children().fadeIn(500);
            }
        }
        ,
        function(){
                if( navigator.appName == "Microsoft Internet Explorer") {
                    $(this).children().hide();
                }
                else {
                    $(this).stop().children().fadeOut(500);
                }
        })
});



