
            $(document).ready(function(){

                $('div.callout').css('opacity', 0.8);
//
//                var button = $('ul.menu > li');
//
//                button.hover(
//                    function() {
//                        $(this).stop().animate({'opacity':1}, 300);
//                    },
//                    function() {
//                        $(this).stop().animate({'opacity': 0.8}, 300);
//                    }
//                );

                $('div.box').hover(
                    function() {
                        $(this).children('div.callout').stop().animate({'opacity':1}, 300);
                    },
                    function() {
                        $(this).children('div.callout').stop().animate({'opacity': 0.8}, 300);
                    }
                );
            });
