$(document).ready(function(){
	/* PNG fix */
	if (document.all && !window.opera) {
		DD_belatedPNG.fix('#abckid-hanging, #navigation, #header-container img, .gravatar, .rss');
	}
	
	/* Contents navigation animation */
	$("#contents ul li a").mouseover(function(){
		$(this).animate(
			{textIndent: "3em"}, {
			duration: "fast",
			easing: "easeOutBack"
		});
	}).mouseout(function(){
		if (!$(this).parent().hasClass("current")) {
			$(this).animate(
			{textIndent: "0"}, {
			duration: "fast",
			easing: "easeOutBack"
			});
		}
	});
	$("#kla-categories").accordion({ header: "h2", autoHeight: false, collapsible: true, active: false });
	$("a.zoom").fancyZoom({directory: "/img/fancyzoom/", closeOnClick: true});
});