What is the page url for your 'homepage'? Isn't it index.php? Go to edit your index.php page. Look at the top for a line similar to this:
PHP Code:
define('THIS_SCRIPT', 'index');
that defines what "THIS_SCRIPT" is called for that page - in this case it's called 'index'. Put that name in the conditional and in that condition put the action/code you only want done on that page. If you want something else done on others, go:
HTML Code:
<if condition="THIS_SCRIPT == 'index'">
do whatever only on the 'index' page
<else />
do something else on all other pages
<if>