// JavaScript Document
$(function() {
                
                        $("#winter > div:gt(0)").hide();
        
                        setInterval(function() { 
                          $('#winter > div:first')
                            .fadeOut(2000)
                            .next()
                            .fadeIn(2000)
                            .end()
                            .appendTo('#winter');
                        },  8000);
                        
                });
