function ws_fade(options, images) {
    var $ = jQuery;
    images.each(function(Index) {
        if (!Index) {
            $(this).show();
        } else {
            $(this).hide();
        }
    });
    this.go = function(new_index, curIdx) {
        $(images.get(new_index)).fadeIn(options.duration);
        $(images.get(curIdx)).fadeOut(options.duration);
        return new_index;
    };
}



$j(document).ready(function() {
    // executes when HTML-Document is loaded and DOM is ready


    $j("#slider-container1").wowSlider({ effect: "fade", prev: "prev", next: "next", duration: 10 * 100, delay: 30 * 100, outWidth: 920, outHeight: 345, width: 920, height: 345, autoPlay: true, stopOnHover: false, loop: false, bullets: 0, caption: true, controls: false });

});
