﻿
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);
            });
        },
    slideRightHideFast:
    function() {
        return this.each(
            function() {
                $(this).hide('slide', { direction: 'right' }, 0);
            });
    },
    slideLeftShow:
    function() {
        return this.each(
            function() {
        $(this).show('slide', { direction: 'left' }, 750);
            });
    }

});
