<!-- 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/future1.jpg';
Pic[1] = '../images/banner/future2.jpg';
Pic[2] = '../images/banner/future3.jpg';


var alts = new Array();
// to add more images, just continue
// the pattern, adding to the array below

alts[0] = 'Books Coming Soon';
alts[1] = 'Books Coming Soon';
alts[2] = 'Books Coming Soon';

// Below is the variable that will describe the page
var pageDescription = "<p class=\"featuredCategorySubItem\" style=\"text-align: center; font-size:14px;\">Coming Soon!</p>";
pageDescription += "<h5 class=\"featuredBookTitle\"><a href=\"http://www.thebookshoponline.com/Shop/Product-9781841491653-Title-GATHERING-STORM.aspx\" title=\"Robert Jordon's The Gathering Storm (Hardcover)\">Robert Jordon's The Gathering Storm (Hardcover)</a></h5>";
pageDescription += "<p><a href=\"http://www.thebookshoponline.com/Shop/Product-9781841491653-Title-GATHERING-STORM.aspx\" title=\"Robert Jordon's The Gathering Storm (Hardcover)\"><img src=\"http://www.thebookshoponline.com/Images/97818414/9781841491653.jpg\" alt=\"Robert Jordon's The Gathering Storm (Hardcover)\" style=\"margin-left: auto; margin-right: auto; width: 180px; display: block;\" title=\"Robert Jordon's The Gathering Storm (Hardcover)\" /></a></p>";
pageDescription += "<h5 class=\"featuredBookTitle\"><a href=\"http://www.thebookshoponline.com/Shop/Product-9781841491653-Title-GATHERING-STORM.aspx\" title=\"Robert Jordon's The Gathering Storm (Hardcover)\">Pre Order it now : <strike>RRP: &pound;20.00</strike> Our Price: &pound;15.00</a></h5>";
pageDescription += "<p style=\"font-size:14px; font-weight: bold; margin-left: 20px;\">About this Book:</p>";
pageDescription += "<p class=\"featuredProductContent\">As we all know, Robert Jordan passed away in September, 2007. The book he was working on, A Memory of Light, which was intended to be the twelth and final novel in The Wheel of Time series, was incomplete at the time of his passing. He left behind a staggering amount of notes on the world, as well as some written chapters for the final book. In addition, for the parts of the story he did not have documented in written form, he passed on in the good, old fashioned way: he told people the story.</p>";
pageDescription += "<p class=\"featuredProductContent\">In his last days he told the story to his friends and family, who recorded it onto tape. In the months that followed his death, Harriet McDougal, Robert Jordan's beloved wife and editor, put together a comprehensive outline of this final book.</p>";
pageDescription += "<p class=\"featuredProductContent\">Brandon Sanderson, an up-and-coming fantasy writer (and long-time fan of Robert Jordans's) was chosen by Harriet to bring the outline to life in the form of a published novel. Harriet will edit these book, just as she did the rest of the series.</p>";
pageDescription += "<p class=\"featuredProductContent\">In March 2009, it was announced that A Memory of Light was going to be far too long to contain into a single novel and would be published as three seperate novels instead. This was primarily a creative decision, and not a business one. (For a full explanation of why this decision was made, please read <a href=\"http://www.brandonsanderson.com/article/56/Splitting-AMOL\" title=\"Brandon's blog post\">Brandon's blog post on the topic</a>).</p>";
pageDescription += "<p style=\"font-size:14px; font-weight: bold; margin-left: 20px;\">For More Information : <a href=\"http://www.dragonmount.com/Books/Gathering_Storm/\" title=\"Robert Jordon's Website - Dragon Mount\">Robert Jordon's Website - Dragon Mount</a></h5>";


pageDescription += "<p class=\"featuredCategorySubItem\" style=\"font-size:14px;\">Other books coming soon:</p>";
pageDescription += "<h5 class=\"featuredProductLink\"><a href=\"http://www.thebookshoponline.com/Shop/Default.aspx?TopLevelCategory=CS&CategoryTop=CS&ComingSoon=1\" title=\"In the next week\">In the next week</a></h5>";
pageDescription += "<h5 class=\"featuredProductLink\"><a href=\"http://www.thebookshoponline.com/Shop/Default.aspx?TopLevelCategory=CS&CategoryTop=CS&ComingSoon=2\" title=\"In the next month\">In the next month</a></h5>";
pageDescription += "<h5 class=\"featuredProductLink\"><a href=\"http://www.thebookshoponline.com/Shop/Default.aspx?TopLevelCategory=CS&CategoryTop=CS&ComingSoon=3\" title=\"In the next 3 months\">In the next 3 months</a></h5>";


/*

About this Book 
As we all know, Robert Jordan passed away in September, 2007. The book he was working on, A Memory of Light, which was intended to be the twelth and final novel in The Wheel of Time series, was incomplete at the time of his passing. He left behind a staggering amount of notes on the world, as well as some written chapters for the final book. In addition, for the parts of the story he did not have documented in written form, he passed on in the good, old fashioned way: he told people the story. 

In his last days he told the story to his friends and family, who recorded it onto tape. In the months that followed his death, Harriet McDougal, Robert Jordan's beloved wife and editor, put together a comprehensive outline of this final book.  

Brandon Sanderson, an up-and-coming fantasy writer (and long-time fan of Robert Jordans's) was chosen by Harriet to bring the outline to life in the form of a published novel. Harriet will edit these book, just as she did the rest of the series. 

In March 2009, it was announced that A Memory of Light was going to be far too long to contain into a single novel and would be published as three seperate novels instead. This was primarily a creative decision, and not a business one. (For a full explanation of why this decision was made, please read Brandon's blog post on the topic). 

*/

// 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;
        }

//-->