// =======================================
// Ad Selector
// =======================================

// Specify the image files
var FrontAdPic = new Array() // don't touch this
var FrontAdAlt = new Array() // don't touch this
var FrontAdUrl = new Array() // addition for url functionality
var FrontAdOnClk = new Array() // addition for OnClick functionality

// Retrieve the current page url for ads which return to the same page they were click on.
var path2 = location.pathname.lastIndexOf('/')
var thispage2 = "http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+mvHk4H+" + location.pathname.substr(path2+1) + "+storewide10"
if (thispage2 == '')  {
    thispage2 = 'http://www.otcwholesale.com/index.html' 
	}
// To add more images continue the pattern, adding to the array below: 
//FrontAdPic[0] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/independence2009-580x150.jpg'
//FrontAdAlt[0] = 'Click here to save 9% storewide for Independence Day!'
//FrontAdUrl[0] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+Vk4YV2+thispage2+independence2009'
//FrontAdOnClk[0] = 'Save 9% Off Independence Day Weekend Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

FrontAdPic[0] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/africa-580x150.jpg'
FrontAdAlt[0] = 'Click here to save big on all Out of Africa products!'
FrontAdUrl[0] = 'http://www.otcwholesale.com/out-of-africa.html'
FrontAdOnClk[0] = 'Out of Africa Luxury shea Butter products!\r\n\r Please click OK and wait for page to refresh.'

FrontAdPic[1] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/maybelline10-580x200.jpg'
FrontAdAlt[1] = 'Click here to save 10% on all Maybelline products!'
FrontAdUrl[1] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+eDCugD+maybelline.html+maybelline10'
FrontAdOnClk[1] = 'Save 10% on Maybelline Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

FrontAdPic[2] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/springclean-580x200.jpg'
FrontAdAlt[2] = 'Click here to save on our Closeout Items!'
FrontAdUrl[2] = 'http://www.otcwholesale.com/clearance.html'
FrontAdOnClk[2] = 'Check out our Sales Rack!'

FrontAdPic[3] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/stives-580x125.jpg'
FrontAdAlt[3] = 'Click here to save 10% on St Ives Products!'
FrontAdUrl[3] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+6vGH9a+st-ives.html+stives10'
FrontAdOnClk[3] = 'Save 10% off St Ives Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'


//FrontAdPic[0] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/oldspice5-580x200.jpg'
//FrontAdAlt[0] = 'Click here to save 5% on Old Spice!'
//FrontAdUrl[0] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+4wyUvX+old-spice.html+oldspice5'
//FrontAdOnClk[0] = 'Save 5% Off Old Spice Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

//FrontAdPic[1] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/valentine10-580x200.jpg'
//FrontAdAlt[1] = 'Click here to save 10% on our Valentines Day Gift Section!'
//FrontAdUrl[1] =  'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+U5qdtm+gift-ideas.html+valentine10'
//FrontAdOnClk[1] = 'Save 10% on our Valentines Day Gift Section!\r\n\r Please click OK and wait for page to refresh.'

//FrontAdPic[2] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/alli10-580x200.jpg'
//FrontAdAlt[2] = 'Click here to get instant savings on Alli weight loss Products!'
//FrontAdUrl[2] = 'http://www.otcwholesale.com/alli.html'
//FrontAdOnClk[2] = 'The new way to help boost your weight loss by up to 50%'

//FrontAdPic[3] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/axe15-580x200.jpg'
//FrontAdAlt[3] = 'Click here to save 15% on All Axe products!'
//FrontAdUrl[3] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+XjybNR+axe.html+axe15'
//FrontAdOnClk[3] = 'Save 15% on all Axe Products Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

//FrontAdPic[3] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/prodigy10-580x150.jpg'
//FrontAdAlt[3] = 'Click here to save 10% on Prodigy Diabetic Products!'
//FrontAdUrl[3] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+bVfGgQ+prodigy.html+prodigy10'
//FrontAdOnClk[3] = 'Save 10% off Prodigy Diabetic Products Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'


// =======================================
// Put Image in Place
// =======================================
var rand2 = Math.random();
var currentimg2 = Math.floor(FrontAdPic.length * rand2);

function FrontAdSelector()
{
document.images.FrontAd.src = FrontAdPic[currentimg2];
document.images.FrontAd.alt = FrontAdAlt[currentimg2];
}

function FrontAdLink(){
window.location = FrontAdUrl[currentimg2];
}

function FrontAdClick(){
if (FrontAdOnClk[currentimg2] != ''){
alert(FrontAdOnClk[currentimg2]);
}
}