<?php
/*
* banner
* ./app/design/frontend/default/default/template/catalog/layer/my.banner.phtml
*
* v2011-02-08
*/
?>

<?php
include("banner.phtml");

$url = Mage::registry('current_category')->getUrlPath();

//$url = str_replace("shop/", "", $url);
//$url = str_replace(".html", "", $url);

$url = "http://www.EXAMPLE.COM/" . $url;

// view banner if available
if(array_key_exists($url, $banner)): ?>
<div class="block category-banner">
    <a href="<?php echo $banner[$url][1]; ?>">
        <img src="/custom/banner/<?php echo $banner[$url][0]; ?>"/>
    </a>
</div>
<?php else: ?>
<div style="clear:both"></div>
<?php endif; ?>
