I wanted to do some custom functionality upon user logout, so I hooked to the customer logout event, and added an observer to it.
Here's the configuration in config.xml
<customer_logout>
<observers>
<cwmyaccount>
<type>singleton</type>
<class>KrtMalta_Myaccount_Model_Observer</class>
<method>setRegularCustomer</method>
</cwmyaccount>
</observers>
</customer_logout>
However I'd like the execute my custom functionality even on session-timeout. I've looked up google and Magento files with pretty much no success. Is it possible to hook to session-timeout somehow?