$(document).ready(function() {
	jQuery("img.logo").reflect();
	jQuery("#sidebar1 ul ul").hide();
	var a = new Array();
	a = window.location.pathname.split('/');
	// remove empty/unwanted elements at start
	if (a[1] == 'gingkonut')  {
		a.splice(0, 2);
	} else {
		a.splice(0, 1);
	}
	// remove last empty element
	a.length -= 1;
	// append path to doc title
	document.title = 'gingknout > ' + a.join(" > ");
	
	// select appropriate menu links
	if (a.length == 0) jQuery("#home-link").addClass("selected")
	for (i = 0; i <= a.length; i++) {
		var name = '#' + a[i]+ '-link';
		jQuery(name).addClass("selected").next("ul").show().end().children("ul").show();
	}
	
	// allow clicks on li items not just <a>
	//jQuery("li").click(function(e) {
    //    jQuery(this).find("a").trigger('click');
	//});

	if (a[a.length-1] != 'ugallery') {
		// not compatible with uGallery plugin
		jQuery("#container").shadow({color: "#606060", width:8});
	}
});

