var imgNum = 2;

$(document).ready(function(){
		if($("body#home-page").length > 0) {
			headerAnimation();
			//$("div#container").height(0);
		}
		
		$(function() {
			$('a.lightbox').lightBox({	imageLoading:'/images/lightbox-ico-loading.gif',		
										imageBtnPrev:'/images/lightbox-btn-prev.gif',
										imageBtnNext:'/images/lightbox-btn-next.gif',
										imageBtnClose:'/images/lightbox-btn-close.gif',
										imageBlank:'/images/lightbox-blank.gif'}
									);
		});
});

function headerAnimation() {
	var fadeTime = parseInt(1000);
	$("div#fader").queue(function () {
		$("div#fader").fadeOut(fadeTime);					   
		$(this).dequeue();
	});
		$("div#container").queue(function () {
			$("div#container").css("background-image","url(/images/header/headerbg_1"+imgNum+".jpg)");
			$(this).dequeue();
		});
		$("div#fader").queue(function () {
			$("div#fader").css("background-image","url(/images/header/headerbg_1"+imgNum+".jpg)");
			$(this).dequeue();
		});
	$("div#fader").queue(function () {
		$("div#fader").fadeIn(fadeTime);					   
		$(this).dequeue();
	});
	if(imgNum>3) {
		imgNum=1;
	} else {
		imgNum++;
	}	
	setTimeout("headerAnimation()",4500);
}