﻿<!--
function changeSlide(){
  $('#flashBanner ul li').removeClass('activeSlide');//clear class activeSlide
  $activeSlide.addClass('activeSlide');//add class activeSlide to next selected element
  $('.bannerBkg').css('background-image','url("' + $('li.activeSlide a').attr('title') + '")');//set slide image
  $('a.bannerLnk').attr('href',$('li.activeSlide a').attr('href'));//set slide link
}
function rotateBanner(){
  play = setInterval(function(){
    $activeSlide = $('#flashBanner ul li.activeSlide').next();//next slide
    if ($activeSlide.length === 0){//loop
      $activeSlide = $('#flashBanner ul li:first-child');
    }
  changeSlide();},7000);
}
function navClick(){//reset timer
  clearInterval(play);//stop rotation
  $activeSlide = $(this).parent('li');//show clicked slide
  changeSlide();//trigger rotation
  rotateBanner();//resume rotation
  return false;//disable href link
}
//-->
