//----------------------------------------------------------------
//
//Auto Banner - (Interval = 7 secs)
//last modified:11/12/2009
//
//----------------------------------------------------------------

//------ All pictures in the Auto Banner
var imgs1 = new Array(      'shop/GuidesHintsTipsHeader.png', 'shop/NewProductsHeader.png'        );

//------ All Links in the Auto Banner respective of imgs1
var lnks1 = new Array(      'shop/Guides_Tips_and_Ideas.html', 'shop/New_Products.html'           );

//------ All tooltips in the Auto Banner respective of imgs1
var title1 = new Array(     'Check out our guides, hints and cake ideas', 'For all our new products click here' );

//------ Number of pictures in Auto Banner
var imgCt1 = imgs1.length;

//------ Cycles through pictures and other attributes respectively
var currentAd1 = 0;
function cycle1() {
  if (currentAd1 == imgCt1) {
    currentAd1 = 0;
  }

//------ Changes currrent image for new image (inc. respective attributes)
var banner1 = document.getElementById('Banner');
var link1 = document.getElementById('BannerLink');
  banner1.src=imgs1[currentAd1]
  banner1.title=title1[currentAd1]
  link1.href=lnks1[currentAd1]
  currentAd1++;
}
//------ eg. Wait 15 secs
window.setInterval('cycle1(); ',           7000         );

