// Slider by TiPE-media

$(document).ready(function() {
        function slider ( )
        {
            $('#slider div').each(function(i){
              var imgs = $(this).find("img").length;
              if($(this).hasClass("start"))
              {
                $(this).find("img:first").fadeIn('100');
                $(this).removeClass("start");
              }
              else if($(this).find("img:visible").next()[0] && $(this).find("img:visible").next()[0].tagName == "IMG") 
              {
                $(this).find("img:visible").addClass("vis").hide();
                $(this).find("img.vis").next().fadeIn('100');
                $(this).find("img.vis").removeClass("vis");
              }
              else
              {
                $(this).find("img:visible").hide();
                $(this).find("img:first").fadeIn('100');
              }
            });
        }
    
    $("#slider div img").hide();
    slider();
    setInterval( function() {slider();}, 8000);
});
