﻿        $(function() {
            $(".menuItem").hover(
                        function() { $(this).find(".capped, .cappedWithShadow").stop(true,true).slideUp(400); },
                        function() { $(this).find(".capped, .cappedWithShadow").stop(true,true).slideDown(250); }
                );
        });

        $(document).ready(function() {
            //Full Caption Sliding (Hidden to Visible)
            $('.boxgrid.captionfull').hover(function() {
                $(".cover", this).stop(true, true).animate({ top: '160px' }, { queue: false, duration: 260 });
            }, function() {
                $(".cover", this).stop(true, true).animate({ top: '260px' }, { queue: false, duration: 200 });
            });
        });

        $(document).ready(function() {
            $.sifr({
                path: 'resources/',
                save: true
            });
            $('h1').sifr({ font: 'din' });
            $('h2').sifr({ font: 'din' });
        });