﻿(function ($) {

    $.fn.SlideIn = function() {
        if ($(this).hasClass("top")) {
            $(this).animate({ top: 0 }, { queue: false, duration: 500 });
        } else { 
            $(this).animate({ bottom: 0 }, { queue: false, duration: 500 });
        }
    }

})(jQuery);

$(document).ready(function () {
    $("#SideImgSlider #Slider div").SlideIn();
    $("#mnImg").cycle();
}); 
