function getTopRanked(amount)
{
	
	
	DWREngine._execute(_ajaxConfigGal._cfscriptLocation, null, 'getTopRanked',amount,returnTopRanked);
	
	
	
}

function returnTopRanked(container)
{
	
	document.getElementById('spotlight-PYL').innerHTML = container;
}

function getSpotlight(amount)
{
	
	DWREngine._execute(_ajaxConfigGal._cfscriptLocation, null, 'getSpotlightLOLs',amount,returnSpotlight);	
	
}

function returnSpotlight(container)
{
	document.getElementById('top-rated-PYL').innerHTML = container;
}

function getGalleryLOLs(recordsPerPage,pageIndex,type)
{
	
	
	
	
	
	
		DWREngine._execute(_ajaxConfigGal._cfscriptLocation, null, 'getGalleryLOLs',recordsPerPage,pageIndex,type,returnAllGalleryLols);	
	
}

function returnAllGalleryLols(container)
{
	document.getElementById('all-lols').innerHTML = container;
}

