$(function ()  //JQUERY start
{ 
  preloadImg = function () {
    var images = (typeof arguments[0] == 'object') ? arguments[0] : arguments;
    for (var i = 0; i < images.length; i++) {
        jQuery("<img>").attr("src", images[i]);
    }
  }  
  preloadImg("/img/podarki/podarki1.jpg", 
             "/img/tenerife/spain-tenerife-400x100.jpg");

  tick=0;
  var bn_img = new Array(
   '<a href="/podarki/"><img alt="Необычные подарки-приключения" src="/img/podarki/podarki1.jpg" style="width: 400px; height: 100px;  display: none;" /></a>',
   '<a href="/spain/"><img alt="Туры в Испанию. Тенериф. Канарские острова" src="/img/tenerife/spain-tenerife-400x100.jpg" style="width: 400px; height: 100px; display: none;" /></a>'
  );

  $('#b400').html(bn_img[tick]);
  $('#b400 img').slideDown(1500);

  //window.clearInterval(bntimer); 
  $.fn.bntimer = function()
  {
      tick=tick+1;
      if (tick==bn_img.length) {tick=0;}
      $('#b400').html(bn_img[tick]);
      //$('#b400').css("","none"); //html(bn_img[tick]);
      $('#b400 img').animate({ "width":"toggle","opacity": "toggle"}, {duration:1500}); 
  }

  window.setInterval(function() {
      $("#b400").bntimer();
  }, 6000);
});  

