<?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>dhtml-menu-builder.com &#187; Latest Samples</title>
	<atom:link href="http://www.dhtml-menu-builder.com/blog/category/latest-samples/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dhtml-menu-builder.com/blog</link>
	<description>Tech Tips, Samples and More</description>
	<lastBuildDate>Sat, 01 Oct 2011 13:09:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>CSS3 Animated Navigation Menu</title>
		<link>http://www.dhtml-menu-builder.com/blog/1174/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/1174/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 12:01:05 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[CSS menu]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[navigation menus]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1174</guid>
		<description><![CDATA[Navigation menus play a crucial role in web design and a good navigation menu is definitely a plus to the design. Lately I was playing around with CSS3 for a navigation menu and I learnt how to create an animated &#8230; <a href="http://www.dhtml-menu-builder.com/blog/1174/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Navigation menus</strong> play a crucial role in <strong>web design</strong> and a good navigation menu is definitely a plus to the design. Lately I was playing around with <strong>CSS3</strong> for a navigation menu and I learnt how to create an animated navigation menu by only using CSS3(<strong>No Images</strong>, <strong>No JavaScript</strong>).  Using CSS3 in place of jQuery/JavaScript for animations has obvious  advantages like faster load time, lesser heavier website, etc. In this  article I am sharing the code of a navigation menu made using CSS3. It  renders perfectly on Chrome, Firefox, Safari and Opera. And without the  easing effects on Internet Explorer and non CSS3 compatible browsers.</p>
<p><a href="../wp-content/uploads/2011/08/CSS3-Animated-Navigation-Menu.png"><img title="CSS3-Animated-Navigation-Menu" src="../wp-content/uploads/2011/08/CSS3-Animated-Navigation-Menu.png" alt="" width="871" height="481" /></a></p>
<p>The CSS</p>
<pre><span style="color: #ff0000;">body {
	font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
	background:#545454;
	margin: 0;
	background:-webkit-gradient(linear, left top, right bottom,
        from(#5454  color-stop(.5, #7e7e7e), to(#545454)) fixed;
	background:-webkit-linear-gradient(45deg, #545454, #7e7e7e .5,
        #545454);
	background:-moz-linear-gradient(45deg, #545454, #7e7e7e .5,
        #545454);
	background:-o-linear-gradient(45deg, #545454, #7e7e7e .5,
        #545454);
	border-top:7px solid #52a8e8;
	text-shadow:0 0 3px rgba(0, 0, 0, 1);
	letter-spacing: 2px;
	font-size: 20px;
}
a {
	text-decoration:none;
	color:#fff;
}
header {
	width:850px;
	margin-left:auto;
	margin-right:auto;
}
header nav a {
	position:relative;
	float: left;
	width:150px;
	text-align:center;
	padding-top:23px;
	padding-bottom:30px;
	margin-right:20px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
	background:#52a8e8;
	background: -webkit-gradient(linear, left top, left bottom,
       color-stop(.2, #52a8e8),
        color-stop(1, #4984ce));
	background: -moz-linear-gradient(center top, #52a8e8 20%,
        #4984ce 100%);
	background: -o-linear-gradient(#52a8e8, #4984ce);
}
header nav a:hover {
	padding-top:53px;
	padding-bottom:60px;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
}</span></pre>
<p>The HTML</p>
<pre><span style="color: #ff0000;">&lt;body&gt;
&lt;header&gt;
  &lt;nav&gt;
    &lt;a href="#"&gt;HOME&lt;/a&gt;
    &lt;a href="#"&gt;ABOUT&lt;/a&gt;
    &lt;a href="#"&gt;WORK&lt;/a&gt;
    &lt;a href="#"&gt;CONTACT&lt;/a&gt;
    &lt;a href="#"&gt;BLOG&lt;/a&gt;
  &lt;/nav&gt;
&lt;/header&gt;
&lt;/body&gt;</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/1174/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>21 Free High Quality Navigation Menu PSD</title>
		<link>http://www.dhtml-menu-builder.com/blog/21-free-high-quality-navigation-menu-psd/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/21-free-high-quality-navigation-menu-psd/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 11:49:40 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[drop down menu]]></category>
		<category><![CDATA[horizontal menu]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[psd]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1148</guid>
		<description><![CDATA[One of the most essential part of website is Navigation Menu, Navigation Menu guides visitors how to navigate, explore and interact with the other parts (web pages) of particular website, a navigation menu should be simple and easy to understand, &#8230; <a href="http://www.dhtml-menu-builder.com/blog/21-free-high-quality-navigation-menu-psd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the most essential part of website is Navigation Menu,  Navigation Menu guides visitors how to navigate, explore and interact  with the other parts (web pages) of particular website, a navigation  menu should be simple and easy to understand, should not conflict the  mind of visitors.</p>
<p>SkyTechGeek explored numerous design sites and collected 21 beautiful  high quality PSD files, so that users don’t need to explore hundred of  Google Pages to find out an appropriate PSD file for their design,  Designers and Web developers can use them in their upcoming projects and  can give their websites stunning and beautiful look.</p>
<h2>1. Simple Navigation Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-1.jpg"><img class="aligncenter size-full wp-image-1149" title="Navigation-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-1.jpg" alt="" width="500" height="300" /></a></p>
<h2>2. Modern Menu &amp; GUI Elements PSD</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-2.jpg"><img class="aligncenter size-full wp-image-1150" title="Navigation-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-2.jpg" alt="" width="500" height="300" /></a></p>
<h2>3. Slick Horizontal Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-3.jpg"><img class="aligncenter size-full wp-image-1151" title="Navigation-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-3.jpg" alt="" width="500" height="300" /></a></p>
<h2>4. Breadcrumb Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-4.jpg"><img class="aligncenter size-full wp-image-1152" title="Navigation-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-4.jpg" alt="" width="500" height="300" /></a></p>
<h2>5. Menu Notification Badges</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-5.jpg"><img class="aligncenter size-full wp-image-1153" title="Navigation-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-5.jpg" alt="" width="500" height="300" /></a></p>
<h2>6. Mini Drop-Down Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-6.jpg"><img class="aligncenter size-full wp-image-1154" title="Navigation-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-6.jpg" alt="" width="500" height="300" /></a></p>
<h2>7. Clean Crisp Setting Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-7.jpg"><img class="aligncenter size-full wp-image-1155" title="Navigation-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-7.jpg" alt="" width="500" height="300" /></a></p>
<h2>8. Dark Navigation Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-8.jpg"><img class="aligncenter size-full wp-image-1156" title="Navigation-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-8.jpg" alt="" width="500" height="300" /></a></p>
<h2>9. Candy Coated Red Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-9.jpg"><img class="aligncenter size-full wp-image-1157" title="Navigation-9" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-9.jpg" alt="" width="500" height="300" /></a></p>
<h2>10. Navigation Menu Horrido</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-10.jpg"><img class="aligncenter size-full wp-image-1158" title="Navigation-10" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-10.jpg" alt="" width="500" height="300" /></a></p>
<h2>11. Birds Sign, Grass and Shit Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-11.jpg"><img class="aligncenter size-full wp-image-1159" title="Navigation-11" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-11.jpg" alt="" width="500" height="300" /></a></p>
<h2>12. Sci Fi Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-12.jpg"><img class="aligncenter size-full wp-image-1160" title="Navigation-12" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-12.jpg" alt="" width="500" height="300" /></a></p>
<h2>13. Pixel Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-13.jpg"><img class="aligncenter size-full wp-image-1162" title="Navigation-13" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-13.jpg" alt="" width="500" height="300" /></a></p>
<h2>14. Elegant Ribbon Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-14.jpg"><img class="aligncenter size-full wp-image-1163" title="Navigation-14" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-14.jpg" alt="" width="500" height="300" /></a></p>
<h2>15. Header Navigation Pack</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-15.jpg"><img class="aligncenter size-full wp-image-1164" title="Navigation-15" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-15.jpg" alt="" width="500" height="300" /></a></p>
<h2>16. Grunge Gothic Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-16.jpg"><img class="aligncenter size-full wp-image-1165" title="Navigation-16" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-16.jpg" alt="" width="500" height="300" /></a></p>
<h2>17. Simple Navigation Menu</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-17.jpg"><img class="aligncenter size-full wp-image-1166" title="Navigation-17" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-17.jpg" alt="" width="500" height="300" /></a></p>
<h2>18. Mega Menu Navigation</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-18.jpg"><img class="aligncenter size-full wp-image-1167" title="Navigation-18" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-18.jpg" alt="" width="500" height="300" /></a></p>
<h2>19. Fresh Drop Down Menu Pack</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-19.jpg"><img class="aligncenter size-full wp-image-1168" title="Navigation-19" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-19.jpg" alt="" width="500" height="300" /></a></p>
<h2>20. Pixel Daily</h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-21.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-20.jpg"><img class="aligncenter size-full wp-image-1170" title="Navigation-20" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-20.jpg" alt="" width="500" height="300" /></a><br />
<strong><strong> </strong></strong></p>
<h2><strong><strong>21. Vivid Navigation Bar</strong></strong></h2>
<p><a href="../wp-content/uploads/2011/08/Navigation-21.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-21.jpg"><img class="aligncenter size-full wp-image-1169" title="Navigation-21" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/Navigation-21.jpg" alt="" width="500" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/21-free-high-quality-navigation-menu-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Well-Designed Tabbed Menus Showcase</title>
		<link>http://www.dhtml-menu-builder.com/blog/8-well-designed-tabbed-menu-showcase/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/8-well-designed-tabbed-menu-showcase/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 15:32:23 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[tab-based navigation]]></category>
		<category><![CDATA[tabbed]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1122</guid>
		<description><![CDATA[There are an extensive amount of roads you can take in web design, specifically in navigation. Here, we will talk about one specific navigation technique, tab-based navigation. If properly carried out, tabbed navigation can be very clean and organized within &#8230; <a href="http://www.dhtml-menu-builder.com/blog/8-well-designed-tabbed-menu-showcase/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are an extensive amount of roads you can take in web design,  specifically in navigation. Here, we will talk about one specific  navigation technique, tab-based navigation. If properly carried out,  tabbed navigation can be very clean and organized within a web layout.</p>
<p>So <strong>what is tabbed navigation</strong>? Well, it is  essentially a set of buttons most often set horizontally. Tabs generally  follow numerous different styling guidelines. First, a tab set usually  is attached to or slightly protrudes from a container, like in the  example below. Also, notice how the open tab matches the background  color of the container, and the other buttons are darker. This is  another common styling guideline.</p>
<p>When you look at tabbed navigations, you will also notice many  styling trends. First, many tabs will have rounded corners on buttons.  This helps to create a clean look. Also helping to make a clean look is  the use of separation between buttons. Most designs use space to  separate buttons, but a bevel, single line, or background color contrast  will also look nicely.</p>
<p>You will also see the <strong>use of hover effects</strong>, which is  a common usability characteristic of the tabbed navigation. Gradients,  radial and linear, help to achieve an impressve hover effect that brings  dimension to the button that the user is selecting. Actually, you will  notice that many tab buttons, selected or not, will use a slight  gradient to add depth and demension to the button. This is a very simple  detail often used to bring extra styling to many different user  interface elements, such as buttons. The most important aspect in the  design of tabbed navigation is that the active tab needs to be clear and  obvious. This is what separates a tabbed navigation from an ordinary  horizontal row of buttons or hyperlinks (<em>thanks, Allen</em>).<br />
So, with all of that in mind, take a look at these<strong> excellent tabbed-navigations</strong> shown below. Look for the trends, and follow the link to further  inspect the usability of the tabbed navigation and how it looks with the  rest of the design.</p>
<p><strong>City of Grace</strong><br />
A good example of tabs that work nice colors into a usable layout.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-1.jpg"><img class="aligncenter size-full wp-image-1123" title="tab-menu-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-1.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>Revolution Drviving</strong><br />
Brilliant button backgrounds that aren’t over the top make these tabs really great.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-1.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-2.jpg"><img class="aligncenter size-full wp-image-1124" title="tab-menu-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-2.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>Track My People</strong><br />
These buttons use gradients for depth, and a drop shodow to add demension to the tabs behind the selected one.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-3.jpg"><img class="aligncenter size-full wp-image-1125" title="tab-menu-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-3.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>Jobs on the Wall</strong><br />
More brilliant styling, these tabs fit perfectly with the other elements on the site.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-3.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-4.jpg"><img class="aligncenter size-full wp-image-1126" title="tab-menu-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-4.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>LittleLines</strong><br />
This is one of the better examples of styling in this showcase because  of the gradients to add dimension to the buttons and strong borders.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-4.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-5.jpg"><img class="aligncenter size-full wp-image-1127" title="tab-menu-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-5.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>Magpie</strong><br />
Doesn’t get much more simple than this, but still a good example.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-5.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-6.jpg"><img class="aligncenter size-full wp-image-1128" title="tab-menu-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-6.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>The Invoice Machine</strong><br />
The navigation below uses a strong color difference, usable buttons, and borders to separate tabs from the rest of the design.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-6.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-7.jpg"><img class="aligncenter size-full wp-image-1129" title="tab-menu-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-7.jpg" alt="" width="450" height="350" /></a></p>
<p><strong>Inkd</strong><br />
Good styling and usable because of size and separation.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-7.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-8jpg.jpg"><img class="aligncenter size-full wp-image-1130" title="tab-menu-8jpg" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/tab-menu-8jpg.jpg" alt="" width="450" height="350" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/8-well-designed-tabbed-menu-showcase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10  Attractive Navigation Menus for Inspiration</title>
		<link>http://www.dhtml-menu-builder.com/blog/10-attractive-navigation-menus-for-inspiration/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/10-attractive-navigation-menus-for-inspiration/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 14:17:05 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[navigation menus]]></category>
		<category><![CDATA[site navigation]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1098</guid>
		<description><![CDATA[Successful, eye-catching and mainly user-friendly site navigation sometimes is key to whole web design, because users usually search for navigation at first, when they visit website. Also don’t shy to experiment – portfolio websites can stand out just by that, &#8230; <a href="http://www.dhtml-menu-builder.com/blog/10-attractive-navigation-menus-for-inspiration/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Successful, eye-catching and mainly user-friendly site navigation  sometimes is key to whole web design, because users usually search for  navigation at first, when they visit website. Also don’t shy to  experiment – portfolio websites can stand out just by that, creating  something beautiful and unusual. In our days there are times when whole  websites slide over your eyes, possibilities are pretty limitless. Keeping in mind such parameters, I created a list with 10 innovative,  beautiful, creative and eye-catching navigation menus for your  inspiration in web development process.<strong> </strong></p>
<ol>
<li><strong>Panic – Coda</strong></li>
<p>Popular menu already, you may know about this one before.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-1.jpg"><img class="aligncenter size-full wp-image-1099" title="web-menu-navigation-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-1.jpg" alt="" width="570" height="369" /></a></p>
<li><strong>Helmy-Bern</strong></li>
<p>Excellent example of well implemented grunge website and JavaScript navigation</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-2.jpg"><img class="aligncenter size-full wp-image-1100" title="web-menu-navigation-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-2.jpg" alt="" width="570" height="333" /></a></p>
<li><strong>SkiAlpine</strong></li>
<p>Simple yet well designed navigation dropdown menu.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-3.jpg"><img class="aligncenter size-full wp-image-1103" title="web-menu-navigation-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-3.jpg" alt="" width="570" height="202" /></a></p>
<li><strong>TapTapTap</strong></li>
<p>Exceptional navigation, you gonna love this one.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-4.jpg"><img class="aligncenter size-full wp-image-1104" title="web-menu-navigation-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-4.jpg" alt="" width="570" height="459" /></a></p>
<li><strong>TheHoleInOurGospel</strong></li>
<p><strong><br />
</strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-4.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-5.jpg"><img class="aligncenter size-full wp-image-1105" title="web-menu-navigation-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-5.jpg" alt="" width="570" height="174" /></a></p>
<li><strong>Apple</strong></li>
<p>Whole website is one big beauty and MAC section has interesting sliding menu.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-5.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-6.jpg"><img class="aligncenter size-full wp-image-1106" title="web-menu-navigation-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-6.jpg" alt="" width="570" height="207" /></a></p>
<li><strong>Creasenso</strong></li>
<p>Beautiful rollover effects in navigation.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-6.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-7.jpg"><img class="aligncenter size-full wp-image-1107" title="web-menu-navigation-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-7.jpg" alt="" width="570" height="204" /></a></p>
<li><strong>Branded07</strong></li>
<p><strong><br />
</strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-7.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-8.jpg"><img class="aligncenter size-full wp-image-1108" title="web-menu-navigation-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-8.jpg" alt="" width="570" height="279" /></a></p>
<li><strong>Aperfolio</strong></li>
<p><strong><br />
</strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-8.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-9.jpg"><img class="aligncenter size-full wp-image-1109" title="web-menu-navigation-9" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-9.jpg" alt="" width="570" height="221" /></a></p>
<li><strong>AteBits</strong></li>
<p><strong><br />
</strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-10.jpg"><img class="aligncenter size-full wp-image-1110" title="web-menu-navigation-10" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/08/web-menu-navigation-10.jpg" alt="" width="570" height="246" /></a></ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/10-attractive-navigation-menus-for-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Example Websites Using Rounded Corner Menu</title>
		<link>http://www.dhtml-menu-builder.com/blog/8-example-websites-using-rounded-corner-menu/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/8-example-websites-using-rounded-corner-menu/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 15:55:09 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[DHTML menu]]></category>
		<category><![CDATA[drop down menu]]></category>
		<category><![CDATA[rounded menu]]></category>
		<category><![CDATA[web menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1085</guid>
		<description><![CDATA[Creating rounded corner in web design absolutely not a new thing, but with the presence of CSS3 in popular browser like Firefox, Chrome, Safari, and Opera, now is easier for us to creating rounded corner, sometimes I remember before when &#8230; <a href="http://www.dhtml-menu-builder.com/blog/8-example-websites-using-rounded-corner-menu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Creating rounded corner in web design absolutely not a new thing, but  with the presence of CSS3 in popular browser like Firefox, Chrome,  Safari, and Opera, now is easier for us to creating rounded corner,  sometimes I remember before when I need to add an image in each corner  of the box, what a frustrating. Untill these day many websites still  using it as a main navigation style, even in the corporate website, and  some of more simple websites their menu style inspired by apple.</p>
<h2><strong>Mozilla Firefox</strong></h2>
<h2><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu.png"><img class="aligncenter size-full wp-image-1086" title="rounded-corner-menu" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu.png" alt="drop down menu" width="500" height="200" /></a><strong>Oracle</strong></h2>
<h2><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-2.png"><img class="aligncenter size-full wp-image-1087" title="rounded-corner-menu-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-2.png" alt="dhtml menu" width="496" height="200" /></a><strong>Apple</strong></h2>
<h2><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-3.png"><img class="aligncenter size-full wp-image-1088" title="rounded-corner-menu-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-3.png" alt="web menu" width="500" height="200" /></a><strong>Roxio</strong></h2>
<h2><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-4.png"><img class="aligncenter size-full wp-image-1089" title="rounded-corner-menu-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-4.png" alt="drop down menu" width="500" height="200" /></a><strong>Real Mac Software</strong></h2>
<h2><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-5.png"><img class="aligncenter size-full wp-image-1090" title="rounded-corner-menu-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-5.png" alt="web menu" width="500" height="200" /></a><strong>gOS</strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-6.png"><img class="aligncenter size-full wp-image-1091" title="rounded-corner-menu-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-6.png" alt="web menu" width="500" height="200" /></a><strong>Skype</strong></h2>
<h2><strong></strong><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-7.png"><img class="aligncenter size-full wp-image-1092" title="rounded-corner-menu-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-7.png" alt="dhtml menu" width="500" height="200" /></a><strong>Loop Insight</strong></h2>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-8.png"><img class="aligncenter size-full wp-image-1093" title="rounded-corner-menu-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/rounded-corner-menu-8.png" alt="menu builder" width="500" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/8-example-websites-using-rounded-corner-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Creative Drop Down Menus</title>
		<link>http://www.dhtml-menu-builder.com/blog/10-creative-drop-down-menus/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/10-creative-drop-down-menus/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 16:41:04 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[drop down menus]]></category>
		<category><![CDATA[horizontal menu]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[vertical menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1071</guid>
		<description><![CDATA[One of the first things to do when planning out a new website is to work out all of the content that will be in the site. You then divide that up into sections and then into various levels of &#8230; <a href="http://www.dhtml-menu-builder.com/blog/10-creative-drop-down-menus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the first things to do when planning out a new website is to  work out all of the content that will be in the site. You then divide  that up into sections and then into <strong>various levels of navigation</strong>.</p>
<p>The result is a boring list of links.</p>
<p>That list of links is one of the most <strong>important part of your website</strong> though, it goes without saying that every visitor to the site will be using them to get around.</p>
<p>In this post we’ve pulled together some of the <strong>best designed drop down menus</strong> (both horizontal menus and vertical menus) to help give you ideas to enhance your own.<br />
<strong><br />
1. Clear Left</strong></p>
<p>Another multi-line menu with a great color scheme.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu.png"><img class="aligncenter size-full wp-image-1073" title="navigation-menu" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu.png" alt="" width="501" height="121" /></a></p>
<p><strong>2. Mint</strong></p>
<p>Another wide-tabbed menu with a transparent effect.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-2.png"><img class="aligncenter size-full wp-image-1074" title="navigation-menu-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-2.png" alt="" width="501" height="158" /></a></p>
<p><strong>3. Ronny Pries</strong></p>
<p>Chalk-on-blackboard effect makes the menu casual yet creative.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-3.png"><img class="aligncenter size-full wp-image-1075" title="navigation-menu-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-3.png" alt="" width="413" height="159" /></a></p>
<p><strong>4. Sohtanaka</strong></p>
<p>Pretty colors, elegant fonts and light effects.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-4.png"><img class="aligncenter size-full wp-image-1076" title="navigation-menu-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-4.png" alt="" width="481" height="187" /></a></p>
<p><strong>5. The Resume Girl</strong></p>
<p>Another creative menu with a nice casual look.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-5.png"><img class="aligncenter size-full wp-image-1077" title="navigation-menu-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-5.png" alt="" width="517" height="136" /></a></p>
<p><strong>6. Web Designer Wall</strong></p>
<p>Another casual sticky-note style menu.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-5.png"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-6.png"><img class="aligncenter size-full wp-image-1078" title="navigation-menu-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-6.png" alt="" width="490" height="156" /></a></p>
<p><strong>7.  Carbonica</strong></p>
<p>A casual arrow and a circle indicates the current page. The casual font also adds to the beauty of this menu.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-7.png"><img class="aligncenter size-full wp-image-1079" title="navigation-menu-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-7.png" alt="" width="296" height="310" /></a></p>
<p><strong>8. IipVapi</strong></p>
<p>A black-and-white vertical menu in the shape of a post card.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-7.png"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-8.png"><img class="aligncenter size-full wp-image-1080" title="navigation-menu-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-8.png" alt="" width="241" height="259" /></a></p>
<p><strong>9. Nando Designer</strong></p>
<p>A casual menu with a notebook effect.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-8.png"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-9.png"><img class="aligncenter size-full wp-image-1081" title="navigation-menu-9" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-9.png" alt="" width="222" height="212" /></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-10.png"></a></p>
<p><strong>10. Nick Ad</strong></p>
<p>A highly dynamic menu with great effects and contrasting colors.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-10.png"><img class="aligncenter size-full wp-image-1082" title="navigation-menu-10" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/07/navigation-menu-10.png" alt="" width="238" height="134" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/10-creative-drop-down-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drop-Down Menu: 10 Useful Scripts to Enhance Header Navigation</title>
		<link>http://www.dhtml-menu-builder.com/blog/drop-down-menu-10-useful-scripts-to-enhance-header-navigation/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/drop-down-menu-10-useful-scripts-to-enhance-header-navigation/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 15:49:51 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[drop down menu]]></category>
		<category><![CDATA[drop down tab]]></category>
		<category><![CDATA[javascript menu]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[pull down menu]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1054</guid>
		<description><![CDATA[Drop-down menu (also known as pull-down menu) is an essential in most web design. It plays important role in the creation of an effective and user friendly website. It’s a good solution to trim down long menu that is overwhelming &#8230; <a href="http://www.dhtml-menu-builder.com/blog/drop-down-menu-10-useful-scripts-to-enhance-header-navigation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Drop-down menu</strong> (also known as pull-down menu) is an  essential in most web design. It plays important role in the creation of  an effective and user friendly website. It’s a good solution to trim  down long menu that is overwhelming the screen space, getting them to  display in a more organize category-sub category pattern.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-1.jpg"><img class="aligncenter size-full wp-image-1055" title="drop-down-menu-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-1.jpg" alt="Drop down menu" width="500" height="296" /></a></p>
<p>In this article, we’d like to show you some of the <strong>best drop-down menu scripts</strong> we come to know. These drop-down menu varies from <em>CSS</em> only, <em>CSS &amp; Javascripts</em> and menu that will work with your current Javascript library like <em>jQuery</em>, <em>MooTools</em> and <em>Prototype</em>. Full list after jump.</p>
<h3>CSS (Only)</h3>
<p>If you are worried about Javascript disabled on client’s browser, these css-only drop down menu will not fail you.</p>
<p><strong>Ultimate CSS only drop-down menu</strong></p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-1.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-2.gif"><img class="aligncenter size-full wp-image-1056" title="drop-down-menu-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-2.gif" alt="navigation menu" width="500" height="237" /></a></p>
<p><strong>CSS Express Drop-Down Menus</strong><br />
Help you produce a quick (express) CSS drop-down menu without some of the limitations found in some other &#8220;pure&#8221; CSS menus.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-2.gif"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-3.gif"><img class="aligncenter size-full wp-image-1057" title="drop-down-menu-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-3.gif" alt="dhtml menu" width="500" height="161" /></a></p>
<h3>CSS + Javascripts</h3>
<p>With the help of Javascript, drop down menu are more interactive or  at least they get some subtle animation that enhance user experience.  CSS on the other hand, make sure the look and feel is easily  cuztomizable.</p>
<p><strong></strong><strong>Professional dropdown</strong></p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-3.gif"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-4.gif"><img class="aligncenter size-full wp-image-1058" title="drop-down-menu-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-4.gif" alt="navigation menu" width="500" height="203" /></a></p>
<p><strong>Drop Down Tabs (5 styles)</strong><br />
Drop Down Tabs is a horizontal CSS tabs menu that supports a second  level drop down menu for each of its tabs. Comes in 5 different styles.<a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-5.gif"><img class="aligncenter size-full wp-image-1059" title="drop-down-menu-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-5.gif" alt="navigation bar" width="400" height="198" /></a><strong>jQuerys</strong></p>
<p>If you’ve implemented jQuery Javascript Library on your site, here  are some really cool jQuery based drop down menus you should know.</p>
<p><strong>Dropdown, iPod Drilldown, and Flyout styles with ARIA Support and ThemeRoller Ready</strong><br />
Menu system, which can be used to create a simple dropdown menu for a  single list of options, a flyout menu for a smaller hierarchical list of  options.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-6.gif"><img class="aligncenter size-full wp-image-1060" title="drop-down-menu-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-6.gif" alt="menu bar" width="500" height="360" /></a><strong>Mega Drop-Down Menu</strong><br />
A drop down menu that holds more than just new line of links. It also makes group links and make nagivation much easier!</p>
<p><a href="../wp-content/uploads/2011/03/drop-down-menu-7.gif"><img title="drop-down-menu-7" src="../wp-content/uploads/2011/03/drop-down-menu-7.gif" alt="nav bar" width="500" height="329" /></a></p>
<p><strong>(mb)Menu</strong><br />
Powerful jQuery component to build easily a multilevel tree menu or a contextual menu (right click) in an intuitive way.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-8.gif"><img class="aligncenter size-full wp-image-1062" title="drop-down-menu-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-8.gif" alt="navigation bar" width="500" height="229" /></a></p>
<p><strong>MenuMatic</strong><br />
MenuMatic takes a sematic ordered or unordered list of links and uses  MooTools 1.2 to turn it into a dynamic drop down menu system, with  enhanced usability and flair.</p>
<p style="text-align: center;"><a href="../wp-content/uploads/2011/03/drop-down-menu-10.gif"><img class="aligncenter" title="drop-down-menu-10" src="../wp-content/uploads/2011/03/drop-down-menu-10.gif" alt="" width="400" height="178" /></a></p>
<p style="text-align: left;"><strong>Unobstrusive Mootool Drop Down Menu</strong><a href="../wp-content/uploads/2011/03/drop-down-menu-11.gif"><img title="drop-down-menu-11" src="../wp-content/uploads/2011/03/drop-down-menu-11.gif" alt="menu bar" width="500" height="222" /></a></p>
<h3>Scriptaculous/Prototype</h3>
<p><strong>Dropdown Menu</strong><br />
Based on Knallgrau Unordered list. Here’s more similar drop down menu – <a href="http://www.wappler.eu/dropdownmenu/"><strong>Horizontal dropdown menu</strong></a>, <a href="http://www.flash-free.org/en/2008/04/05/e24tabmenu-%E2%80%93-menu-desplegable-ajax/"><strong>e24TabMenu</strong></a>.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-9.gif"><img class="aligncenter size-full wp-image-1063" title="drop-down-menu-9" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/drop-down-menu-9.gif" alt="" width="500" height="157" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/drop-down-menu-10-useful-scripts-to-enhance-header-navigation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Showcase Of Beautiful Vertical Navigation Designs</title>
		<link>http://www.dhtml-menu-builder.com/blog/showcase-of-beautiful-vertical-navigation-designs/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/showcase-of-beautiful-vertical-navigation-designs/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 17:27:47 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[horizontal menu]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[user-friendly]]></category>
		<category><![CDATA[vertical menu]]></category>
		<category><![CDATA[vertical menus]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1032</guid>
		<description><![CDATA[Go to any website and you’re guaranteed to find one thing: a navigation menu. Navigation menus enable visitors to move from page to page; without them, we would have no way to conveniently explore websites. Perhaps this is why designers, &#8230; <a href="http://www.dhtml-menu-builder.com/blog/showcase-of-beautiful-vertical-navigation-designs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Go to any website and you’re guaranteed to find one thing: a <strong>navigation menu</strong>.  Navigation menus enable visitors to move from page to page; without  them, we would have no way to conveniently explore websites. Perhaps  this is why designers, information architects, usability researchers and  user experience specialists invest so much time and resources into  devising aesthetically pleasing and user-friendly navigation systems.</p>
<p>Website  navigation menus generally come in one of two orientations: vertical  and horizontal. Horizontal navigation menus display items side by side.  Vertical navigation menus stack items on top of each other. In this  post, we highlight some <strong>remarkable vertical navigation menus</strong>, for your inspiration.</p>
<p><strong>Riot Industries</strong><br />
The  vertical navigation in this portfolio website is simple and clean in  looks yet robust in functionality and interaction. Clicking on “Web,”  “Print,” or “Identity” filters the thumbnails on the right, and clicking  the “About” menu item shifts the navigation to the right, making way  for content on the left.</p>
<div id="attachment_1033" class="wp-caption aligncenter" style="width: 339px"><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-1.jpg"><img class="size-full wp-image-1033" title="vertical-menu-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-1.jpg" alt="navigation menu" width="329" height="316" /></a><p class="wp-caption-text">vertical </p></div>
<p><strong>Village Version</strong><br />
Here, you can see  one of the benefits of vertical navigation: it allow for highly compact  and modular menus that appear distinct from the rest of the layout.  Sitting in the top-left corner, just below the website’s name, the menu  is one of the first things visitors see (at least with left-to-right  languages).</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-2.jpg"><img class="aligncenter size-full wp-image-1034" title="vertical-menu-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-2.jpg" alt="" width="190" height="180" /></a><strong>Bruno Souza</strong><br />
This portfolio has a clean and simple navigation design that leaves the visitor to focus on the vibrant content to the right.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-3.jpg"><img class="aligncenter size-full wp-image-1035" title="vertical-menu-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-3.jpg" alt="" width="350" height="226" /></a><strong>Cambrian House</strong><br />
A quite  distinctive, original navigation menu with five different typefaces. A  bit unusual navigation for a crowdsourcing community.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-4.jpg"><img class="aligncenter size-full wp-image-1036" title="vertical-menu-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-4.jpg" alt="" width="213" height="392" /></a><strong>Comfort Brothers</strong><br />
Navigation  menu on the right side of the layout for a change: although the design  is basic, almost rudimentary, it works well and is easy to navigate.  Navigation menus do not have to look outstanding.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-5.jpg"><img class="aligncenter size-full wp-image-1037" title="vertical-menu-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-5.jpg" alt="" width="333" height="351" /></a><strong>Auberge de l’Ill</strong><br />
This vertical navigation design is elegant and functional. Hovering over a menu item triggers a horizontal animation.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-6.jpg"><img class="aligncenter size-full wp-image-1038" title="vertical-menu-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-6.jpg" alt="" width="352" height="360" /></a><strong>The Hipstery!</strong><br />
This website’s  vertical navigation sits right in the middle of where the visitor is  focusing when the page first loads. Active menu items are denoted by a  pointing hand.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-7.jpg"><img class="aligncenter size-full wp-image-1039" title="vertical-menu-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-7.jpg" alt="" width="480" height="156" /></a><strong>Research at MICA</strong><br />
The navigation design for the Maryland Institute College of Arts  demonstrates another advantage of vertical navigation: it shows  hierarchy and allows you to group menu items without resorting to  drop-down menus, whose sub-menus are displayed only when the user mouses  over an item.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-8.jpg"><img class="aligncenter size-full wp-image-1040" title="vertical-menu-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-8.jpg" alt="" width="199" height="589" /></a><strong>Power to the Poster</strong><br />
The vertical navigation design on this website is positioned right below  the website’s name, making it prominent without drawing attention from  the large rotating banner in the top-right.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-9.jpg"><img class="aligncenter size-full wp-image-1041" title="vertical-menu-9" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-9.jpg" alt="" width="240" height="351" /></a><strong>From the Couch</strong><br />
The vertical navigation here shows yet another benefit: being able to accommodate more menu items.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-10.jpg"><img class="aligncenter size-full wp-image-1042" title="vertical-menu-10" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/vertical-menu-10.jpg" alt="" width="252" height="549" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/showcase-of-beautiful-vertical-navigation-designs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10 Innovative Icon-Based Navigation Menus</title>
		<link>http://www.dhtml-menu-builder.com/blog/10-innovative-icon-based-navigation-menus/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/10-innovative-icon-based-navigation-menus/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 17:05:20 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[icon-based]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[navigation menus]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=1019</guid>
		<description><![CDATA[Here at Design Shack we love a good navigation menu. Lately we’ve noticed a trend arising around menus that use icons either exclusively in place of text or as a support of additional textual information. Adding icons to your navigation &#8230; <a href="http://www.dhtml-menu-builder.com/blog/10-innovative-icon-based-navigation-menus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here at Design Shack we love a good navigation menu. Lately we’ve noticed a trend arising around menus that use icons either exclusively in place of text or as a support of additional textual information.</p>
<p>Adding icons to your navigation can not only give you an aesthetic boost but actually make for a quicker visual read of the link. Here’s a collection of over thirty icon-based navigation menus that we found online. We’ll conclude with a few resources you can use to snag some free icons to create your own fancy menus.</p>
<h3><strong>KK Media</strong></h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-1.jpg"><img class="aligncenter size-full wp-image-1020" title="icon-nav-menu-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-1.jpg" alt="dhtml menu" width="510" height="300" /></a></p>
<h3>Bite Club</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-1.jpg"></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-2.jpg"><img class="aligncenter size-full wp-image-1021" title="icon-nav-menu-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-2.jpg" alt="icon navigation menu" width="510" height="300" /></a><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-3.jpg"></a></p>
<h3>Mac Rabbit</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-3.jpg"><img class="aligncenter size-full wp-image-1022" title="icon-nav-menu-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-3.jpg" alt="drop down menu" width="510" height="300" /></a>Narwhal Company</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-4.jpg"><img class="aligncenter size-full wp-image-1023" title="icon-nav-menu-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-4.jpg" alt="icon menu" width="510" height="300" /></a></p>
<h3>Pixel Resort</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-5.jpg"><img class="aligncenter size-full wp-image-1024" title="icon-nav-menu-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-5.jpg" alt="navigation bar" width="510" height="300" /></a></p>
<h3>Fishing Cactus</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-6.jpg"><img class="aligncenter size-full wp-image-1025" title="icon-nav-menu-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-6.jpg" alt="drop down menu" width="510" height="300" /></a></p>
<h3>Tutorial 9</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-7.jpg"><img class="aligncenter size-full wp-image-1026" title="icon-nav-menu-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-7.jpg" alt="tab menu" width="510" height="300" /></a></p>
<h3>Envira Media</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-8.jpg"><img class="aligncenter size-full wp-image-1027" title="icon-nav-menu-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-8.jpg" alt="javascript menu" width="510" height="300" /></a></p>
<h3>Duarte Pires</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-9.jpg"><img class="aligncenter size-full wp-image-1028" title="icon-nav-menu-9" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-9.jpg" alt="horizontal menu" width="510" height="300" /></a></p>
<h3>Weblifting</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-10.jpg"><img class="aligncenter size-full wp-image-1029" title="icon-nav-menu-10" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/03/icon-nav-menu-10.jpg" alt="" width="510" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/10-innovative-icon-based-navigation-menus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>15 Really Amazing jQuery Navigation Menu</title>
		<link>http://www.dhtml-menu-builder.com/blog/15-really-amazing-jquery-navigation-menu/</link>
		<comments>http://www.dhtml-menu-builder.com/blog/15-really-amazing-jquery-navigation-menu/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 16:18:33 +0000</pubDate>
		<dc:creator>evazhou</dc:creator>
				<category><![CDATA[Latest Samples]]></category>
		<category><![CDATA[animation flash menu]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.dhtml-menu-builder.com/blog/?p=996</guid>
		<description><![CDATA[JQuery is a most useful component that can giving your visitor unique experience in a variety of ways, like image sliders, show your twitter stream, image galleries, navigation menu and contact forms. In this post you’ll find 15 really amazing &#8230; <a href="http://www.dhtml-menu-builder.com/blog/15-really-amazing-jquery-navigation-menu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>JQuery is a most useful component that can giving your visitor unique experience in a variety of ways, like image sliders, show your twitter stream, image galleries, navigation menu and contact forms.</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-1.jpg"><img class="aligncenter size-full wp-image-997" title="jquery-menu-1" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-1.jpg" alt="jQuery menu" width="550" height="321" /></a>In this post you’ll find 15 really amazing jQuery navigation menu in  tutorials and premium scripts, which will help you to create a  navigation menu of your dreams.</p>
<h3>Tutorials of Amazing jQuery Navigation Menu</h3>
<p>Rocking and Rolling Rounded Menu with jQuery</p>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-2.jpg"><img class="aligncenter size-full wp-image-998" title="jquery-menu-2" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-2.jpg" alt="jQuery menu" width="550" height="300" /></a>by Mary Lou<br />
In this tutorial we are going to make use of the incredibly awesome  rotating and scaling jQuery patch from Zachary Johnson that can be found  here. We will create a menu with little icons that will rotate when  hovering. Also, we will make the menu item expand and reveal some menu  content, like links or a search box.</p>
<h3>Halftone Navigation Menu With jQuery &amp; CSS3</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-3.jpg"><img class="aligncenter size-full wp-image-999" title="jquery-menu-3" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-3.jpg" alt="jQuery menu" width="550" height="301" /></a>by Martin Angelov<br />
Today we are making a CSS3 &amp; jQuery halftone-style navigation menu,  which will allow you to display animated halftone-style shapes in  accordance with the navigation links, and will provide a simple editor  for creating additional shapes as well.</p>
<h3>Beautiful Slide Out Navigation- A CSS and jQuery Tutorial</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-4.jpg"><img class="aligncenter size-full wp-image-1000" title="jquery-menu-4" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-4.jpg" alt="navigation menu" width="550" height="341" /></a>by Mary Lou<br />
Today I want to show you how to create an amazing slide out menu or  navigation for your website. The navigation will be almost hidden – the  items only slide out when the user hovers over the area next to them.  This gives a beautiful effect and using this technique can spare you  some space on your website. The items will be semi-transparent which  means that content under them will not be completely hidden.</p>
<h3>How To Create a Cool Animated Menu with jQuery</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-5.jpg"><img class="aligncenter size-full wp-image-1001" title="jquery-menu-5" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-5.jpg" alt="drop down menu" width="550" height="279" /></a>by Chris Spooner<br />
In this tutorial we’ll be building a cool navigation list complete with a  sliding hover effect. Learn how to build the concept in Photoshop, lay  out the basic HTML elements, style everything up in CSS then tie it all  together with a few lines of jQuery to create a semantic, accessible and  degradable menu design.</p>
<h3>Beautiful Background Image Navigation with jQuery</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-6.jpg"><img class="aligncenter size-full wp-image-1002" title="jquery-menu-6" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-6.jpg" alt="web menu" width="550" height="333" /></a>by Mary Lou<br />
In this tutorial we are going to create a beautiful navigation that has a  background image slide effect. The main idea is to have three list  items that contain the same background image but with a different  position. The background image for each item will be animated to slide  into place in different times, creating a really nice effect. The  background image sliding direction from the list item in the middle will  depend on which item the user was before: coming from the right, it  will slide from the left and vice versa.</p>
<h3>Animated Navigation with CSS &amp; jQuery</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-7.jpg"><img class="aligncenter size-full wp-image-1003" title="jquery-menu-7" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-7.jpg" alt="navigation bar" width="550" height="234" /></a>by Soh Tanaka<br />
As I was checking out some flash sites for inspiration, I ran across a  couple websites that had some nice navigation effects. I’m not a huge  fan of wildly animated navs, but these had simple and elegant roll over  effects that I liked. I decided to imitate the effect with CSS and  jQuery, and would like to share this technique today.</p>
<h3>A Fresh Bottom Slide Out Menu with jQuery</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-8.jpg"><img class="aligncenter size-full wp-image-1004" title="jquery-menu-8" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-8.jpg" alt="javascript menu" width="550" height="341" /></a>by Mary Lou<br />
In this tutorial we will create a unique bottom slide out menu. This  large menu will contain some title and a description of the menu item.  It will slide out from the bottom revealing the description text and  some icon. We will use some CSS3 properties for some nice shadow effects  and jQuery for the interaction.</p>
<h3>How to Make a Smooth Animated Menu with jQuery</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-9.jpg"><img class="aligncenter size-full wp-image-1005" title="jquery-menu-9" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-9.jpg" alt="menu maker" width="550" height="300" /></a>by Zach Dunn<br />
Ever seen some excellent jQuery navigation that left you wanting to make  one of your own? Today we’ll aim to do just that by building a menu and  animate it with some smooth effects.</p>
<h3>Overlay Effect Menu with jQuery</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-10.jpg"><img class="aligncenter size-full wp-image-1006" title="jquery-menu-10" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-10.jpg" alt="drop down menu maker" width="550" height="296" /></a>by Mary Lou<br />
In this tutorial we are going to create a simple menu that will stand  out once we hover over it by covering everything except the menu with a  dark overlay. The menu will stay white and a submenu area will expand.  We will create this effect using jQuery.</p>
<h3>CSS Dock Menu</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-11.jpg"><img class="aligncenter size-full wp-image-1007" title="jquery-menu-11" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-11.jpg" alt="menu creator" width="550" height="276" /></a>by Nick La<br />
If you are a big Mac fan, you will love this CSS dock menu. It is using  Jquery library and Fisheye component from Interface and some of my  icons. It comes with two dock position: top and bottom.</p>
<h3>Little Boxes Menu with jQuery</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-12.jpg"><img class="aligncenter size-full wp-image-1008" title="jquery-menu-12" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-12.jpg" alt="menu builder" width="550" height="301" /></a>by Mary Lou<br />
Today we will create a menu out of little boxes that animate randomly  when a menu item is clicked. The clicked menu item expands and reveals a  content area for some description or links. When the item is clicked  again, the boxes will come back, reconstructing the initial background  image.</p>
<h3>Premium jQuery Scripts for Cute Menu Navigation</h3>
<h3>SV Animated Menu Pack 2</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-13.jpg"><img class="aligncenter size-full wp-image-1009" title="jquery-menu-13" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-13.jpg" alt="dhtmk menu" width="550" height="280" /></a>by SplitV<br />
This is a set of 4 animated menu scripts. All are stand alone, requiring  no external libraries or frameworks. They are extremely small at 1-2kb a  piece uncompressed. If you compress them they are all closer to  1-1.5kb. These scripts make it possible to create great menus with flash  like effects very easily.</p>
<h3>Nice Menu V1.0</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-14.jpg"><img class="aligncenter size-full wp-image-1010" title="jquery-menu-14" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-14.jpg" alt="menu maker" width="550" height="639" /></a>by Alexandra1710<br />
A new way to slide between 2 level huge menu.<br />
easy to use, valid html and css code<br />
works in all majors browsers<br />
easy to plug and play script to your website / blog or gallery</p>
<h3>Super menu pack (10 menus)</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-16.jpg"><img class="aligncenter size-full wp-image-1011" title="jquery-menu-16" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-16.jpg" alt="js menu" width="550" height="275" /></a></p>
<p>by VanKarWai<br />
Super menu pack is a collection of 10 cool menus, 5 in pure css and 5  using jQuery framework for customize or layout with your websites or  applications and projects.</p>
<p>It’s perfect for anyone who wants to give a special touch to their  designs or find a starting point. I tried to create a collection as  varied as possible in style and appearance to give you choice. Thinking  in design working with code.</p>
<h3>Cute Menu – 8 transitions pack</h3>
<p><a href="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-15.jpg"><img class="aligncenter size-full wp-image-1012" title="jquery-menu-15" src="http://www.dhtml-menu-builder.com/blog/wp-content/uploads/2011/02/jquery-menu-15.jpg" alt="horizontal menu" width="550" height="280" /></a>by arl1nd<br />
Cute Menu is very simple to embed to your HTML code. It’s requirements are only JavaScript and CSS support.</p>
<p>Article source: http://www.dynamicwp.net/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhtml-menu-builder.com/blog/15-really-amazing-jquery-navigation-menu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

