﻿jQuery.noConflict();
(function($) {
    $(function() {
        jQuery.fn.extend(
        {
            slideRightShow:
            function() {
                return this.each(
                    function() {
                        $(this).show('slide', { direction: 'right' }, 750);
                    });
            },
            slideLeftHide:
            function() {
                return this.each(
                    function() {
                        $(this).hide('slide', { direction: 'left' }, 333);
                    });
            },
            slideRightHide:
            function() {
                return this.each(
                    function() {
                        $(this).hide('slide', { direction: 'right' }, 333);
                    });
            },
            slideLeftShow:
            function() {
                return this.each(
                    function() {
                        $(this).show('slide', { direction: 'left' }, 750);
                    });
            }

        });
    });
})(jQuery);
