well done, i've installed at
http://www.ezyinvest.com
bug found: favourites.php does not checked if user is logged in i.e. even guests can add to favourites, here's a quick fix:
In favourites.php, find the line at the top:
require("global.php");
and add after the line:
if (!$bbuserinfo[userid] or $bbuserinfo[userid] < 1 or $bbuserinfo[userid] =="") {
show_nopermission();
}