var ie = (document.all) ? true : false;
								countArticle = 0;
								var mySlideData = new Array();
								mySlideData[countArticle++] = new Array(
								'images/alpamayo.jpg',
								'#',
								'Alpamayo mount',
								'The most beautiful mountain in the world'
								);
								mySlideData[countArticle++] = new Array(
								'images/llanganuco.jpg',
								'#',
								'Llanganuco lake',
								'One of the many lakes that there are in the Cordillera Blanca'
								);
								mySlideData[countArticle++] = new Array(
								'images/climbing-huascaran.jpg',
								'#',
								'Huascaran mount',
								'Climbers reaching the summit of the highest tropical mountain in the world'
								);		
								mySlideData[countArticle++] = new Array(
								'images/seeing.jpg',
								'#',
								'Portachuelo viewpoint',
								'Tourists gazing at the North Face of Huascaran mount'
								);	
								
								function startSlideshow() {
								var slideshow = new timedSlideShow($('mySlideshow'), mySlideData);
								}

								addLoadEvent(startSlideshow);
								
