$(document).ready(function () {
    //Full Caption Sliding (Hidden to Visible)
    $('.captionfull').preview();
});

(function ($) {
    $.fn.preview = function (options) {
        var settings = $.extend({}, $.fn.preview.defaults, options); //custom settings
        return this.each(function () {
            $(this).hover(function () {
                $(".pannel-description", this).fadeOut(1000);
            }, function () {
                $(".pannel-description", this).fadeIn(1000);
            });
        });
    }; // end of plugin
})(jQuery);
