﻿ //Slider Default
 
 $(window).load(function(){
    
    var $slider = $('#slider-default');
    $slider.children('ul').children('li').first().fadeIn();
    $(function sliderDefault(){
        $slider.delay(8000).queue(function(){
            $(this).children('ul').children('li').each(function(){
                if ($(this).css('display') != 'none')
                    $(this).fadeOut('slow', function(){
                        //$(this).appendTo($(this).parent());
                        $(this).next().fadeIn('slow', function(){
                            $(this).prev().appendTo($(this).parent());
                            $slider.dequeue();
                            sliderDefault();
                        });
                    });
                });
            }); 
        }); 
     });
