﻿        featuredcontentglider.init({
            gliderid: "featured-posts",
            contentclass: "post",
            togglerid: "togglebox",
            remotecontent: "",
            selected: 1,
            persiststate: true,
            speed: 300,
            direction: "leftright",
            autorotate: true,
            autorotateconfig: [10000, 9999] //if auto rotate enabled, set [milliseconds_btw_rotations, cycles_before_stopping]
        });

        $(document).ready(function() {
            $(".glidecontentwrapper .post").hover(function() {
                $(this).children(".glidemeta").animate({ opacity: "show" }, "slow");
            }, function() {
                $(this).children(".glidemeta").animate({ opacity: "hide" }, "fast");
            });
        });
