Can OGNL access things in the Page Scope? You would probably have to either use JSP EL
<s:if test="${active == 'home'}">
or import the attribute into the request scope and scope the OGNL EL
<tiles:importAttribute name="active" scope="request"/>
<s:if test="%{#request.active == 'home'}">
(*Chris*)
