/***************************************************************
*
* Function to show 'Return to Previous Page'
*
***************************************************************/
document.observe("dom:loaded", function() {
	$$('a[rel="nav"]').each(function(link) {
		link.onclick = function() { history.go(-1); return false; }
	});
});
