

function chg_banner(){
 do_chg = true;
    $('.banner_wrapper').find('img').each(function(){
        if($(this).css('display')!='none' && do_chg){
          $(this).fadeOut(2500);
          if($(this).next().is('img'))
                $(this).next().fadeIn(2500);
          else
                $('#banner_1').fadeIn(2500);
                do_chg = false;
           
        }
        });
      
    }
      
$('#stbild2').css({'cursor':'pointer'});
$('#stbild3').css({'cursor':'pointer'});
$('#stbild4').css({'cursor':'pointer'});	

$('#stbild2').click(function(){
    location.href = 'SHOP-NEW/';
});	
$('#stbild3').click(function(){
    location.href = 'VINTAGE-KLEIDER-VINTAGE-KLEIDUNG-VINTAGE-SHOP/';
});	
$('#stbild4').click(function(){
    location.href = 'editorial.php';
});	
window.setInterval("chg_banner()",5000);
