var c = 1;var files=new Array(
"header_160541.jpg",
"header_267218.jpg",
"header_52873.jpg");

$(document).ready(function(){
	
	if(files.length == 0)
	{
		//Default image
		$('#img1').attr('src', 'http://jaccos.net/images/header-images/header_default.jpg');
	}
	else if(files.length == 1)
	{
		$('#img1').attr('src', 'http://jaccos.net/images/header-images/'+files[0]);
	}
	else
	{
		$('#img1').attr('src', 'http://jaccos.net/images/header-images/'+files[0]);
		$('#img1').addClass('active');
		
		$('#img2').css('display', 'none');
		$('#img2').addClass('hidden');
		
		setInterval( "nextImg()", 5000 );
	}
	
});

function nextImg()
{
	//First load next image from the file array
	$('.hidden').attr('src', 'http://jaccos.net/images/header-images/'+files[c]);
	//first get id's
	var active = $('.active').attr('id');
	var hidden = $('.hidden').attr('id');
	
	//Fade in and out
	$('#'+hidden).fadeIn('slow').removeClass('hidden').addClass('active');
	$('#'+active).fadeOut('slow').removeClass('active').addClass('hidden');
	if(c == files.length-1) c = 0;
	else c++;

}
