$(document).ready(function(){
	
	//fixa rubriken som ska placeras över bilden
	$("#rightcontent h1").each(function(){
		$(this).css("margin-top",-($(this).outerHeight()+15));
	});
	$("h2.title").each(function(){
		$(this).css("margin-top",-($(this).outerHeight()+25));
	});

	//body ska vara minst screenHeight - (headHeight + footHeight)
	matchSize();
	$(window).resize(function(){
		matchSize();
	});
	
	
	bildspelsbilder = $("DIV.kdmp-bildspel IMG");
	if(bildspelsbilder.length>0){
		if(bildspelsbilder.length==1){
			$(bildspelsbilder[0]).show();
		}else{
			bildspelNext(0);
		}
	}
	
	//fixa datepicker
	$("INPUT.kdmp-date").datepicker({
		firstDay : 1,
		changeFirstDay : false,
		showAnim: 'slideDown',
		speed : 'fast' 
	});
	
});

var bildspelsbilder;
var bildspel_duration = 2000;
var bildspel_transition = 1000;
function bildspelNext(index){
	showix = index < bildspelsbilder.length ? index : 0;
	hideix = index > 0 ? index -1 : bildspelsbilder.length-1;
	nextix = index+1 < bildspelsbilder.length ? index+1 : 0;
	$(bildspelsbilder[hideix]).fadeOut(bildspel_transition);
	$(bildspelsbilder[showix]).fadeIn(bildspel_transition,function(){
		setTimeout(function(){
			bildspelNext(nextix);
		},bildspel_duration);
	});
}

function matchSize(){
	if($("#main").outerHeight() != $(window).height() - ($("#head").outerHeight() + $("#foot").outerHeight())){
		$("#main").css("min-height",
			$(window).height() - ($("#head").outerHeight() + $("#foot").outerHeight())
		);
	}
}
