getIsHomePage has a bug in it. It does not return true if you have get parameters in it. For example if you cal it in example.com/?a=1 it will return false. Instead of getIsHomepage use this:
$action = Mage::app()->getFrontController()->getAction()->getFullActionName();
if ($action == 'cms_index_index') {
//your are on the homepage
}
else {
//not on homepage
}