﻿
<!-- hide from old browsers



var urlArray = new Array(); 
var imgArray = new Array(); 
var altArray = new Array(); 


urlArray[0] = "/gift-wrapping-service.shtml";
urlArray[1] = "/content/gift-services/UK-on-specific-day.shtml";
urlArray[2] = "/content/gift-services/next-business-day.shtml";
urlArray[3] = "/gift-wrapping-service.shtml";
urlArray[4] = "/content/gift-services/UK-on-specific-day.shtml";


imgArray[0] = "/img/features/our-gift-services/gift-wrapping.jpg";
imgArray[1] = "/img/features/our-gift-services/on-specific-day-cupcake.jpg";
imgArray[2] = "/img/features/our-gift-services/next-day-delivery.jpg";
imgArray[3] = "/img/features/our-gift-services/recycle-gift-wrap.jpg";
imgArray[4] = "/img/features/our-gift-services/specific-day-delivery-in.gif";

altArray[0] = "We wrap your gifts";
altArray[1] = "Your gifts delivered on the big day";
altArray[2] = "Your gifts next business day";
altArray[3] = "Eco-friendly gift wrapping available";
altArray[4] = "Choose your own delivery day";


cc = (urlArray.length);
var ind = Math.floor(Math.random() *cc);


document.write('\<a href\=\"'+urlArray[ind]+'\" title\=\"'+altArray[ind]+'\"\>\<img src\=\"'+imgArray[ind]+'\" alt\=\"'+altArray[ind]+' \" \/\>\<\/a\>');
 	 

-->
