$(document).ready(function(){
	$("#klader a").click(function(){
		$("#large img").hide().attr({"src": $(this).attr("href"), "title": $("> img", this).attr("title")});
		$("#large #bildtext").hide();
		$("#large #bildtext").html($("> img", this).attr("title"));
		return false;
	});
	$("#large>img").load(function(){
			$("#large>img:hidden").fadeIn("def");
			$("#large>#bildtext:hidden").fadeIn("def");
	});
});
