images = [];
for(i=0;i<6;i++) {
	images[i] = "<a href='/video'><img src='/images/slideshow/slide"+i+".jpg' alt='' /></a>";
}

var j = 0;
function homeSlider()
{
	$("#slideshow_wrap").find("img").animate({opacity: 0},1000);
	setTimeout(function(){
		$("#slideshow_wrap").html(images[j]).find("img").animate({opacity: 0},0);
	},1000);
	setTimeout(function(){
		$("#slideshow_wrap").find("img").animate({opacity: 1},1000);
	},1000);
	
	j++;
	if(j==6) {
		j=0;
	}
}
function changer() {
	$("#slideshow_wrap").html(images[0]);
	setInterval('homeSlider()',5000);
}