Edit global.php to pick up what style was in use on the last page viewed, and apply that style to the current page.
You probably would also have to add a line of code that adds a cookie saying what style was on the last page viewed. Add a line of code like this:
PHP Code:
$styleid = $laststyle;
You would have to run this code at the
end of every page though:
PHP Code:
$laststyle = whatever would get the current styleid from whatever source avaliable;
---line of code to write $laststyle to the vb cookie---
Might want someone that knows more about cookies to do this.