<!-- Begin

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;

// Duration of crossfade (seconds)
var crossFadeDuration = 6;

// Specify the image files
var Pic = new Array();

// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = '../images/banner/allbooks1.jpg';
Pic[1] = '../images/banner/allbooks2.jpg';
Pic[2] = '../images/banner/allbooks3.jpg';


var alts = new Array();
// to add more images, just continue
// the pattern, adding to the array below

alts[0] = 'Some of our new books';
alts[1] = 'Some of our new books';
alts[2] = 'Some of our new books';

// Below is the variable that will describe the page
// ISBN 9780670887033 
// 217811
var pageDescription = "<p class=\"featuredCategorySubItem\" style=\"text-align:center;\">Highlighted Product</p>";
pageDescription += "<h5 class=\"featuredBookTitle\"><a href=\"http://www.thebookshoponline.com/Shop/IndividualProduct.aspx?TopLevelCategory=BK&amp;ISBN=9780670887033&amp;BookTitle=D-DAY\" title=\"Anthony Beevor's D-Day\">Antony Beevor's D-Day</a></h5>";
pageDescription += "<p><a href=\"http://www.thebookshoponline.com/Shop/IndividualProduct.aspx?TopLevelCategory=BK&amp;ISBN=9780670887033&amp;BookTitle=D-DAY\" title=\"Antony Beevor's D-Day\"><img src=\"http://www.thebookshoponline.com/images/dday.jpg\" alt=\"http://www.thebookshoponline.com/images/dday.jpg\" style=\"margin-left: auto; margin-right: auto; height: 281px; display: block;\" title=\"Anthony Beevor's D-Day\" /></a></p>";
pageDescription += "<p style=\"font-size:14px; font-weight: bold; margin-left: 20px;\">Product Description</p>";
pageDescription += "<p class=\"featuredProductContent\">The Normandy Landings that took place on D-Day involved by far the largest invasion fleet ever known. The scale of the undertaking was simply awesome. What followed them was some of the most cunning and ferocious fighting of the war, at times as savage as anything seen on the Eastern Front. As casualties mounted, so too did the tensions between the principal commanders on both sides. Meanwhile, French civilians caught in the middle of these battlefields or under Allied bombing endured terrible suffering. Even the joys of Liberation had their darker side. The war in northern France marked not just a generation but the whole of the post-war world, profoundly influencing relations between America and Europe. Making use of overlooked and new material from over thirty archives in half a dozen countries, D-Day is the most vivid and well-researched account yet of the battle of Normandy. As with Stalingrad and Berlin, Antony Beevor's gripping narrative conveys the true experience of war. </p>";
pageDescription += "<p style=\"font-size:14px; font-weight: bold; margin-left: 20px;\">About the Author</p>";
pageDescription += "<p class=\"featuredProductContent\">Antony Beevor is the renowned author of Stalingrad, which won the Samuel Johnson Prize, the Wolfson Prize for History and the Hawthornden Prize for Literature, and Berlin, which received the first Longman-History Today Trustees' Award. His books have sold nearly four million copies.</p>";
pageDescription += "<p class=\"featuredCategorySubItem\">Here are some of our books.</p>";

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();

for (i = 0; i < p; i++)
{
	preLoad[i] = new Image();
	preLoad[i].src = Pic[i];
}

function runSlideShow()
{
	if(document.getElementById)
	{
		if(document.getElementById( 'SlideShow' ))
		{
		    try
		    {
			    document.getElementById( 'SlideShow' ).style.filter = "blendTrans(duration=2)";
			    document.getElementById( 'SlideShow' ).style.filter = "blendTrans(duration=crossFadeDuration)";
			    document.getElementById( 'SlideShow' ).filters.blendTrans.Apply();

			    document.getElementById( 'SlideShow' ).src = preLoad[j].src;
			    document.getElementById( 'SlideShow' ).alt = alts[j];

			    document.getElementById( 'SlideShow' ).filters.blendTrans.Play();
		    }
		    
		    catch(e)
		    {
			    document.getElementById( 'SlideShow' ).src = preLoad[j].src;
			    document.getElementById( 'SlideShow' ).alt = alts[j];
		    }

			j = j + 1;
			if (j > (p - 1))
			{
				j = 0;
			}

			t = setTimeout('runSlideShow()', slideShowSpeed);
		}
	}
}

        window.onerror = displayErrorMessage;

        function displayErrorMessage(msg, url, linenumber)
        {
            return true;
        }

//-->