<cfcomponent>
	<cfsetting requesttimeout="30">

	<cffunction name="MenuFunction" access="remote" returnformat="plain" returntype="string">
		<cfargument name="myArgument" type="string" required="yes">
		

			<div class="btn-group btn-group-circle margin-bottom-10">

				<cfif myArgument eq 'CreatePCR' OR myArgument eq 'Create_PCR'>
					<a href="#" class="btn green">Preview PCR</a>
				<cfelse>
					<a class="btn btn-default" href="index.cfm?aMenu=billing&page=agency&cat=BillingReports&rpt=create_PCR">Preview PCR</a>
				</cfif>
				<cfif myArgument eq 'pendingPCR' OR myArgument eq 'Pending_PCR'>
					<a href="#" class="btn green">Pending PCR</a>
				<cfelse>
					<a class="btn btn-default" href="index.cfm?aMenu=billing&page=agency&cat=BillingReports&rpt=pending_PCR">Pending PCR</a>
				</cfif>
				<cfif myArgument eq 'completedPCR' OR myArgument eq 'Completed_PCR'>
					<a href="#" class="btn green">Completed PCR</a>
				<cfelse>
					<a class="btn btn-default" href="index.cfm?aMenu=billing&page=agency&cat=BillingReports&rpt=completed_PCR">Completed PCR</a>
				</cfif>

			</div>
		<cfset myResult="foo" />
		<cfreturn myResult>
	</cffunction>
</cfcomponent>