jQuery(function() {
	//var listsForGalleria;
	
	if (window.is_home_page) {
		return;
	}
	
	// Flag all ULs containing only As or IMGs as children as "Galleria-able"
	$("#primarycontent ul").each(function() {
		// Evaluate this list
		/*
		var allGood = true;
		jQuery(this).children().each(function() {
			if (this.nodeName.toLowerCase() != "a" && this.nodeName.toLowerCase() != "img") {
				allGood = false;
			}
		});
		
		if (allGood) {
			jQuery(this).addClass("Galleria-able");
		}
		*/
		
		// Verify that each list item contains one image
		var allGood = true;
		jQuery(this).children().each(function() {
			if (jQuery(this).find("img").length != 1) {
				allGood = false;
			}
		});
		
		if (allGood) {
			jQuery(this).addClass("Galleria-able");
		}
		
	});
	
	Galleria.loadTheme("scripts/jquery_galleria/galleria.classic.min.js");
	
	$("#primarycontent ul.Galleria-able")
		.css({
			"padding-left": 0
		})
		.galleria({
			"width": 760,
			"height": 400
		});
	
});
