﻿// JScript File

imageArray = new Array("bannerj.jpg","bannerlb.jpg","bannerweb.jpg","bannerflow.jpg","bannerdf.jpg","bannerref.jpg","bannert.jpg","bannerbb.jpg");
currentImage=-1;
imageCount=imageArray.length;

$(document).ready(function()
	{
	setTimeout("rotateBanner()",5000);
    });

function rotateBanner()
{
currentImage++;
if(currentImage==imageCount)currentImage=0;
$(".bannerMain").fadeOut("slow",function () {$(".bannerMain").css("background-image","url("+imageArray[currentImage]+")");});
$(".bannerMain").fadeIn("slow");
setTimeout("rotateBanner()",5000);
}

// These 2 functions are for the pricing popup and nothing to do with the banner
function showPricePopup() {
//$('#pricepopup').fadeIn("fast");
//$('#pricewindow').fadeIn("fast");
   var tab = document.getElementById("pricepopup");
   tab.style.display="inline";
   var tab1 = document.getElementById("pricewindow");
   tab1.style.display="inline";
}
function closePricePopup() {
//$('#pricewindow').fadeOut("fast");
//$('#pricepopup').fadeOut("fast");
   var tab = document.getElementById("pricewindow");
   tab.style.display="none";
   var tab1 = document.getElementById("pricepopup");
   tab1.style.display="none";
}

