countArticle = 0;
var mySlideData = new Array();
var flipper = document.getElementById('mySlideshow');
var flipping_height = '200px';
flipper.style.height = flipping_height;
flipper.style.width = '526px';

mySlideData[countArticle++] = new Array(
	'../components/images/test/adidasransom.jpg',
	'http://www.urbanindustry.co.uk/brands/adidas-originals.asp',
	'We are very pleased to introduce Adidas X Ransom',
	'Premium Collaboration and strictly limited distribution.'
);
mySlideData[countArticle++] = new Array(
	'../components/images/test/nikequik.jpg',
	'http://www.urbanindustry.co.uk/brands/nike.asp',
	'Urban Industry Store is now a Nike Quick Strike Account',
	'And to launch this we have the limited World Cup pack'
);
mySlideData[countArticle++] = new Array(
	'../components/images/test/huf.jpg',
	'http://www.urbanindustry.co.uk/brands/huf.asp',
	'Another new, premium arrival to Urban Industry, HUF',
	'Amazing quality products, expect more deliveries soon.'
);
mySlideData[countArticle++] = new Array(
	'../components/images/test/gravis.jpg',
	'http://www.urbanindustry.co.uk/brands/gravis-bags.asp',
	'New season of Gravis Bags now in stock',
	'Amazing Summer colour ways on classic Gravis bags.'
);

function startSlideshow() {
    var slideshow = new timedSlideShow($('mySlideshow'), mySlideData);
}

addLoadEvent(startSlideshow);