			$(document).ready(function(){
				go_home();
				$("a").click(function(){this.blur();});
			});
			
			function go_home() {
				$(".navigation_item").removeClass("navigation_hilite");
				$("#content").fadeOut("",function(){$(this).load("forsidebillede.ajax.php",function(){$(this).fadeIn();});});
				//$("#content").load("forsidebillede.ajax.php");
			}
			
			function images(fotograf) {
				navigation_hilite(fotograf);
				$("#content").fadeOut("",function(){$(this).load("galleries.ajax.php?fotograf="+fotograf,function(){$(this).fadeIn();});});
				//$("#content").load("galleries.ajax.php?fotograf="+fotograf);
				
			}
			
			function gallery(serie,offset) {
				$("#content").fadeOut("",function(){$(this).load("serie.ajax.php?serie="+serie+"&offset="+offset,function(){$(this).fadeIn();});});
				//$("#content").load("serie.ajax.php?serie="+serie+"&offset="+offset);
			}
			
			function info(filename) {
				if (filename == "madebygirls_en") {
					navigation_hilite("madebygirls_da");
				} else {
					navigation_hilite(filename);
				}
				$("#content").fadeOut("",function(){$(this).load(filename+".ajax.php",function(){$(this).fadeIn();});});
				//$("#content").load(filename+".ajax.php");
			}
			
			function navigation_hilite(id) {
				$(".navigation_item").removeClass("navigation_hilite");
				$("#navigation_"+id).addClass("navigation_hilite");
			}

