<div id="nav2"><!-- CATEGORY MENU -->
<?php if ( has_nav_menu( 'secondary-menu' ) ) { //checks if custom menu has been created
wp_nav_menu( array( 'menu_class' => 'sf-menu', 'theme_location' => 'secondary-menu' ) );
} else {// if not, old fashioned category menu will be loaded
?>
<ul class="sf-menu">
<?php $cat = get_option('swt_categories'); ?><img src="/images/tronoicono.png">
<li class="category_item <?php if(is_home()) { echo 'current-cat'; } ?>"><a href="<?php bloginfo('home'); ?>" id="home">Home</a><ul id="nav" class="">
<?php wp_list_categories("title_li=&depth=1&exclude=$cat" ); ?>
</ul>
<?php } ?>
</div><!-- END CATEGORY MENU -->