<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Digital Raindrops &#187; left</title>
	<atom:link href="http://digitalraindrops.net/demo/wordpress/cms-lite/tag/left/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalraindrops.net/demo/wordpress/cms-lite</link>
	<description>quality free wordpress themes and tutorials for your blog, themes download, wordpress templates, download wordpress theme, wordpress template</description>
	<lastBuildDate>Sat, 01 May 2010 20:56:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Two Artisteer Menus</title>
		<link>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/</link>
		<comments>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 07:31:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[how-to]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[left]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[right]]></category>
		<category><![CDATA[Two Menus]]></category>

		<guid isPermaLink="false">http://digitalraindrops.net/demo/wordpress/cms-lite/?p=483</guid>
		<description><![CDATA[Many of us have downloaded the Artisteer 2.4 Beta, and one of the items from the ‘wish list’ was the Categories menu, you can choose a vertical and horizontal menu, but not two horizontals, Artisteer have done most of the work for us here, so lets explore the options and add some more functionality. Look [...]]]></description>
			<content:encoded><![CDATA[<p>Many of us have downloaded the Artisteer 2.4 Beta, and one of the items from the ‘wish list’ was the Categories menu, you can choose a vertical and horizontal menu, but not two horizontals, Artisteer have done most of the work for us here, so lets explore the options and add some more functionality.</p>
<p><span id="more-483"></span></p>
<p>Look at this image, we have the Home menu item and then three Categories and on the right we have a Page menu, pretty cool menu and not hard to achieve, you will need <strong>Artisteer 2.4</strong> to complete this tutorial.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/menu1.jpg"><img style="border: 0px" title="menu-1" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/menu1_thumb.jpg" border="0" alt="menu-1" width="702" height="109" /></a></p>
<p>All we have done here was to copy the art-menu() function from the functions.php file and paste this in the demo-functions.php, then we added two parameter which we will use to great effect later, and changed some of the code.</p>
<p>The first parameter we pass in is the menu type ‘pages’ or ‘’ for categories, the second is the position of the ‘Home’ menu item ‘left’, ‘right’ or ‘’, in the screenshot above we have added the home menu item before categories as we always expect this menu item to be the first.</p>
<p>This is the categories function &lt;?php demo_menu_items(&#8221;,&#8217;left&#8217;); ?&gt; ,the first parameter blank for categories the second to place the home button left of the categories, the pages &lt;?php demo_menu_items(&#8216;pages&#8217;,&#8221;); ?&gt; ,that is quite simple to use really.</p>
<p>As you can see we have also split the two menus, one left and one right, you can place either menu where you like, all on one line, left and right, and pages and categories in their own space,the menu function comes in a file that you can download the <strong>demo-functions.php</strong></p>
<p>Horizontal functions download the file here <a class="downloadlink" href="http://digitalraindrops.net/demo/wordpress/cms-lite/wp-content/plugins/download-monitor/download.php?id=3" title="Version1.00 downloaded 1359 times" >Navigation Functions (1359)</a> however the bonus file is downloadable at the end of this tutorial and includes both Horizontal and Vertical Menu functions.</p>
<p>You do not need to copy and paste the code, but for those that want to integrate this  into their own code here it is.</p>
<pre class="brush: php; title: ; notranslate">
/* Start CMS-Tutorial horizontal menu */
function demo_menu_items($menuType,$homePosition)
{
 global $artThemeSettings;
 if ('left' === $homePosition) {art_print_homepage();}
 if ('pages' === $menuType)
 {

 add_action('get_pages', 'art_menu_get_pages_filter');
 add_action('wp_list_pages', 'art_menu_list_pages_filter');

 wp_list_pages('title_li=&amp;sort_column=menu_order');

 remove_action('wp_list_pages', 'art_menu_list_pages_filter');
 remove_action('get_pages', 'art_menu_get_pages_filter');
 }
 else
 {
 add_action('get_terms', 'art_menu_get_terms_filter');
 add_action('wp_list_categories', 'art_menu_wp_list_categories_filter');

 wp_list_categories('title_li=');

 remove_action('wp_list_categories', 'art_menu_wp_list_categories_filter');
 remove_action('get_terms', 'art_menu_get_terms_filter');
 }
 if ('right' === $homePosition) {art_print_homepage();}
}
/* end CMS-Tutorial horizontal menu */
</pre>
<h2>Stylesheet</h2>
<p>If you want to option to split the menus on one line like the screenshot we need to add two small blocks to the <strong>demo-custom.css</strong> or the <strong>style.css.</strong></p>
<pre class="brush: css; title: ; notranslate">
/* Start cms-lite menu left and right blocks */
.demo-left
{
float: left;
}
.demo-right
{
   float: right;
}
/* End cms-lite menu left and right blocks */
</pre>
<h2>Functions File</h2>
<p>We need to let WordPress know that our function exists to do this we add a line at the start of the <strong>functions.php file </strong>in the root directory of the theme.</p>
<pre class="brush: php; title: ; notranslate">
/* Start code to load custom functions file */
if (file_exists(TEMPLATEPATH. '/demo-functions.php')) include_once(TEMPLATEPATH. '/demo-functions.php');
/* End code to load custom functions file */
</pre>
<h2>Header File</h2>
<p>This is where we call our new function, we have a few options here, if we just wanted to add our categories menu somewhere then we leave the Artisteer code and add in a call to our menu open <strong>header.php </strong>and add your line where you want the menu to appear.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;art-nav&quot;&gt;
  &lt;ul class=&quot;art-menu&quot;&gt;
   &lt;?php demo_menu_items('',''); ?&gt;
  &lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>This is the call for the menu in the screenshot.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class =&quot;art-nav&quot;&gt;
  &lt;div class=&quot;demo-left&quot;&gt;
   &lt;ul class=&quot;art-menu&quot;&gt;
     &lt;?php demo_menu_items('','left'); ?&gt;
   &lt;/ul&gt;
  &lt;/div&gt;
  &lt;div class=&quot;demo-right&quot;&gt;
   &lt;ul class=&quot;art-menu&quot;&gt;
     &lt;?php demo_menu_items('pages',''); ?&gt;
   &lt;/ul&gt;
  &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>We will leave you to explore other options, we do love to hear from you so drop back and leave a comment or add a link to a live website.</p>
<h2>Bonus Section</h2>
<p>As you have taken the time to read this tutorial here is a bonus just for you, as well as the horizontal menu we have added the vertical, code is much the same except that you pass in &#8216;top&#8217; or &#8216;bottom&#8217; for the &#8216;Home&#8217;, and you set this up in the demo-functions.php file.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/menu-2.jpg"><img class="alignnone size-full wp-image-497" title="menu-2" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/menu-2.jpg" alt="" width="305" height="305" /></a></p>
<p>In the widgets you now have two Vertical Menus the Artisteer one and our Full Vertical Menu, so you could have pages on one and categories on the other, or use the Full Vertical Menu for both pages and categories in any order.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/widgets-1.jpg"><img class="alignnone size-full wp-image-498" title="widgets-1" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/widgets-1.jpg" alt="" width="306" height="284" /></a></p>
<p>Just the code and the download to add now, for the code in the <strong>demo-functions.php </strong>you find this function and set the parameters as you want in the <strong>full_widget_verticalmenu</strong> function look for the code in the first block.</p>
<p>Download: <a class="downloadlink" href="http://digitalraindrops.net/demo/wordpress/cms-lite/wp-content/plugins/download-monitor/download.php?id=4" title="Version1.00 downloaded 111 times" >Both Menu Functions (111)</a></p>
<pre class="brush: php; title: ; notranslate">
&lt;ul class=&quot;art-vmenu&quot;&gt;
&lt;?php demo_vmenu_items('','top'); ?&gt;
&lt;?php demo_vmenu_items('pages',''); ?&gt;
&lt;/ul&gt;
</pre>
<p>Categories only Code.</p>
<pre class="brush: php; title: ; notranslate">
&lt;ul class=&quot;art-vmenu&quot;&gt;
&lt;?php demo_vmenu_items('',''); ?&gt;
&lt;/ul&gt;
</pre>
<p>Pages only Code.</p>
<pre class="brush: php; title: ; notranslate">
&lt;ul class=&quot;art-vmenu&quot;&gt;
&lt;?php demo_vmenu_items('pages','top'); ?&gt;
&lt;/ul&gt;
</pre>
<p>Enjoy share and don&#8217;t forget to add some feedback.</p>
<p>-</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-google">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-ning">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Two+Artisteer+Menus&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/&amp;notes=Many%20of%20us%20have%20downloaded%20the%20Artisteer%202.4%20Beta%2C%20and%20one%20of%20the%20items%20from%20the%20%E2%80%98wish%20list%E2%80%99%20was%20the%20Categories%20menu%2C%20you%20can%20choose%20a%20vertical%20and%20horizontal%20menu%2C%20but%20not%20two%20horizontals%2C%20Artisteer%20have%20done%20most%20of%20the%20work%20for%20us%20here%2C%20so%20lets%20explore%20the%20options%20and%20add%20some%20more%20functional&amp;short_link=http://b2l.me/hjmqe&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
</ul><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

