/*/
 * NicorpWeb HTML Slide 1.0.0
 *
 * Customized version for Gomez Trading Holland
 * http://www.gomeztrading.com/
 * 
 * Copyright (c) 2008 NicorpWeb - All rights reserved
 * http://www.nicorpweb.com/
/*/

// NEEDED DATA \\
var img = new Array();
var url = new Array();

img[0] = '/images/slideshow_forklift.jpg';
img[1] = '/images/slideshow_reachstackers.jpg';
img[2] = '/images/slideshow_trailer.jpg';
img[3] = '/images/slideshow_truck.jpg';
img[4] = '/images/slideshow_crane.jpg';
img[5] = '/images/slideshow_equipment.jpg';

var loops = img.length;

htmlSlide(1);

function htmlSlide (nr)
{
	setTimeout("$(function(){$('img#htmlSlideIMG').fadeOut(1000)});",4000);
	setTimeout("$(function(){$('img#htmlSlideIMG').attr('src','"+img[nr]+"')});",5000);
	if(url[nr])
	{
		setTimeout("$(function(){$('a#htmlSlideURL').attr('href','"+url[nr]+"')});",5000);
	}
	setTimeout("$(function(){$('img#htmlSlideIMG').fadeIn(1000)});",6000);
	nr++;
	if(loops > nr)
	{
		setTimeout("htmlSlide("+nr+");",7000);
	}
	else
	{
		setTimeout("htmlSlide(0);",7000);
	}
}
