var titleInfo = new Array();
var introductionParagraphsInfo = new Array();
var thumbnailTitleInfo = new Array();
var thumbnailImageInfo = new Array();
var thumbnailImageOpaqueInfo = new Array();
var backgroundImageInfo = new Array();
titleInfo[1]='Your choice $9.99!';
introductionParagraphsInfo[1]='Both are 8 hole pencil sharpeners and both are wall or table mountable. Must use promo code: P120PEN to take advantage of this offer. Offer ends 10/31/10.';
thumbnailTitleInfo[1]='$9.99 your choice!';
thumbnailImageInfo[1]='thumbnailImage_1.gif';
thumbnailImageOpaqueInfo[1]='thumbnailImageOpaque_1.gif';
backgroundImageInfo[1]='backgroundImage_1.gif';
titleInfo[2]='Quiet the classroom while protecting the floors.';
introductionParagraphsInfo[2]='The final word in Felt Floor Protection - Shiffler’s patented SNAP CAP! This unique design ensures there will be no more scuffs, scratches and black marks on your shiny vinyl, wood or tile floors. Quick, snap-on installation!';
thumbnailTitleInfo[2]='Shiffler Snap Cap';
thumbnailImageInfo[2]='thumbnailImage_2.gif';
thumbnailImageOpaqueInfo[2]='thumbnailImageOpaque_2.gif';
backgroundImageInfo[2]='backgroundImage_2.gif';
titleInfo[3]='Get a jump on the next time change!';
introductionParagraphsInfo[3]='Your choice $19.99. Set and forget & atomic clocks automatically adjust for DST. DST can be de-activated.
Must use promo code:
PCLOCK10 to take advantage of this offer.';
thumbnailTitleInfo[3]='$19.99 you choose';
thumbnailImageInfo[3]='thumbnailImage_3.jpg';
thumbnailImageOpaqueInfo[3]='thumbnailImageOpaque_3.jpg';
backgroundImageInfo[3]='backgroundImage_3.jpg';
titleInfo[4]='The LOWEST prices of the year!';
introductionParagraphsInfo[4]='Save significantly on ALL Andersen mats including Waterhog Classic Impressions Custom Logo mats and Waterhog Inlay Custom Logo mats.
';
thumbnailTitleInfo[4]='Lowest prices of the year';
thumbnailImageInfo[4]='thumbnailImage_4.jpg';
thumbnailImageOpaqueInfo[4]='thumbnailImageOpaque_4.jpg';
backgroundImageInfo[4]='backgroundImage_4.jpg';
titleInfo[5]='Our lowest prices of the season!';
introductionParagraphsInfo[5]='Significant savings on Marsh and Claridge whiteboards. Many many sizes available!';
thumbnailTitleInfo[5]='Lowest prices!';
thumbnailImageInfo[5]='thumbnailImage_5.gif';
thumbnailImageOpaqueInfo[5]='thumbnailImageOpaque_5.gif';
backgroundImageInfo[5]='backgroundImage_5.gif';
var imageCurrentlyDisplayed=1;
var hasClickedHPC=0;
function rotateHPC()
{
if (hasClickedHPC == 0)
{
nextImage=imageCurrentlyDisplayed+1;
if (nextImage == 6)
nextImage=1;
imageCurrentlyDisplayed=nextImage;
swapHPC(nextImage,0);
}
}
function swapHPC(setNumber,isClick)
{
if (isClick == 1)
hasClickedHPC=1;
thumbnailOffHPC();
$('#promoCarousel-main').fadeOut('fast', function() {
$("#mainLinkHPC").attr("href","/action/processCarouselLink.php?setID="+setNumber);
$("#mainTitleHPC").html(titleInfo[setNumber]);
$("#promoCarousel-main").css("background","url(\"/images/hpc/"+backgroundImageInfo[setNumber]+"\")");
$("#mainIntroParagraphHPC").html(introductionParagraphsInfo[setNumber]);
});
$('#promoCarousel-main').fadeIn(1000, function() {
});
//show the current thumbnail;
$("#thumbnailSet_"+setNumber).css("background","url(\"/images/hpc/"+thumbnailImageInfo[setNumber]+"\")");
return false;
}
function thumbnailOffHPC()
{
for (var i=1;i<6;i++)
{
$("#thumbnailSet_"+i).css("background","url(\"/images/hpc/"+thumbnailImageOpaqueInfo[i]+"\")");
}
}