/* Gallery Main *****************************************************
*
*	Functions for the Gallery Page
*
*********************************************************************/

	addLoadEvent(pageInit);
	
	function pageInit()
	{
		setCategoryImages("categoryLightboxes", "Lightboxes");
	}
	

 /* SHow Category Images ********************************************************
 *
 *	TAKES:		CategoryElementId, Category Id
 * 	RETURNS:	NOTHING
 *	NOTE:		
 *	
 ********************************************************************************/	
 
 	function setCategoryImages(categoryElementId, catId)
	{
		if ((catId != "") & (categoryElementId != ""))
		{
			var categoryElement = getElement(categoryElementId);
			
			if (categoryElement)
			{
				if (categoryElement.innerHTML == "")
				{
					showElement(categoryElementId + "Container");
					setAjaxUrl(categoryElementId, "ajaxGallery.asp?action=getGalleryImages&cat=" + catId, "setLoadingGraphic('" + categoryElementId + "')", false);	
				}
			}
		}
	}