$(document).ready(function() {
	/* Wrap ULs in div.section */
	$("section > ul").not(".team").not(".logos").wrap('<div class="section" />');

	/* Start Slideshow */
	StartSlideShow();

	/* Initialize Gallery/Categories */
	$("#gallery-categories li a").click(function() {
		if($(this).hasClass("current-category")) { return false; }
		$("#gallery-categories .current-category").removeClass("current-category");
		var categoryLink = $(this).attr("href");
		$(this).addClass("current-category");
		categoryInit(categoryLink);
		return false;				    
	});
});
