<?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"
	>

<channel>
	<title>Andrew Sellick &#187; Mootools</title>
	<atom:link href="http://www.andrewsellick.com/category/mootools/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andrewsellick.com</link>
	<description>andrewsellick.com</description>
	<pubDate>Sat, 23 Aug 2008 18:11:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>JavaScript Table Row Highlighter Class using Mootools</title>
		<link>http://www.andrewsellick.com/85/javascript-table-row-highlighter-class-using-mootools</link>
		<comments>http://www.andrewsellick.com/85/javascript-table-row-highlighter-class-using-mootools#comments</comments>
		<pubDate>Wed, 09 Jan 2008 20:22:14 +0000</pubDate>
		<dc:creator>andy</dc:creator>
		
		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://www.andrewsellick.com/85/javascript-table-row-highlighter-class-using-mootools</guid>
		<description><![CDATA[Well Christmas has been and gone (I hope you all had a fantastic Christmas/New Year), and now it&#8217;s time to get back down to some work.
I have developed a simple little class to highlight table rows using Mootools and I thought I would share it with the world.
code
As you can see below the HTML code [...]]]></description>
			<content:encoded><![CDATA[<p>Well Christmas has been and gone (I hope you all had a fantastic Christmas/New Year), and now it&#8217;s time to get back down to some work.</p>
<p>I have developed a simple little class to highlight table rows using Mootools and I thought I would share it with the world.</p>
<h3>code</h3>
<p>As you can see below the HTML code is very basic and uses an ID to define the region which requires highlightling.&nbsp; In this example an ID of &quot;<span class="attribute-value">highlight</span>&quot; has been applied to the tbody.</p>
<p>Finally all that is left is to instantiate the &quot;tableHighlighter&quot; class using the ID of &quot;highlight&quot; to reference the table (or part of) required.</p>
<div class="code">&lt;table&gt;</p>
<p>&nbsp;&nbsp; &nbsp;&lt;thead&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;th&gt;One&lt;/th&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;th&gt;Two&lt;/th&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;th&gt;Three&lt;/th&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;th&gt;Four&lt;/th&gt;</p>
<p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;th&gt;Five&lt;/th&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;th&gt;Six&lt;/th&gt;<br />
&nbsp;&nbsp; &nbsp;&lt;/thead&gt;<br />
&nbsp;&nbsp; &nbsp;<br />
&nbsp;&nbsp; &nbsp;&lt;tbody id=&quot;highlight&quot;&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;1&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;40cm&lt;/td&gt;</p>
<p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;Quaterfold&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;100&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;&lt;a href=&quot;#&quot;&gt;1000&lt;/a&gt;&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;3346005&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;/tr&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;1&lt;/td&gt;</p>
<p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;40cm&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;Quaterfold&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;100&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;&lt;a href=&quot;#&quot;&gt;1000&lt;/a&gt;&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;3346005&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;/tr&gt;</p>
<p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;1&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;40cm&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;Quaterfold&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;100&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;&lt;a href=&quot;#&quot;&gt;1000&lt;/a&gt;&lt;/td&gt;</p>
<p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;3346005&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;/tr&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;1&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;40cm&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;Quaterfold&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;100&lt;/td&gt;</p>
<p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;&lt;a href=&quot;#&quot;&gt;1000&lt;/a&gt;&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;3346005&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;/tr&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;1&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;40cm&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;Quaterfold&lt;/td&gt;</p>
<p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;100&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;&lt;a href=&quot;#&quot;&gt;1000&lt;/a&gt;&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;3346005&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;/tr&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;1&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;40cm&lt;/td&gt;</p>
<p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;Quaterfold&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;100&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;&lt;a href=&quot;#&quot;&gt;1000&lt;/a&gt;&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;td&gt;3346005&lt;/td&gt;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;/tr&gt;<br />
&nbsp;&nbsp; &nbsp;&lt;/tbody&gt;<br />
&nbsp;&nbsp; &nbsp;</p>
<p>&lt;/table&gt;</p>
<p>&lt;script type=&quot;text/javascript&quot;&gt;<br />
&nbsp;&nbsp; &nbsp;<br />
&nbsp;&nbsp; &nbsp;var th = new tableHighlighter( &#8216;highlight&#8217; );<br />
&nbsp;&nbsp; &nbsp;<br />
&lt;/script&gt;</div>
<h3>class options</h3>
<p>The Hightlighter class comes with several options built in to allow for easy customisation.&nbsp; These include:</p>
<ul>
<li>     rowColourClass - Can be named as you wish and referenced through css to produce your desired results.     </li>
<li>     rowHoverColourClass - Can be named as you wish and referenced through css to produce your desired results.     </li>
<li>     highlightRow - odd or even     </li>
</ul>
<p>
An example of how this could be used is as follows:</p>
<div class="code">&lt;script type=&quot;text/javascript&quot;&gt;<br />
&nbsp;&nbsp; &nbsp;<br />
&nbsp;&nbsp; &nbsp;var th = new tableHighlighter( &#8216;highlight&#8217;, {highlightRow: &#8216;odd&#8217;, rowColourClass: &#8216;myRowClassOne&#8217;, rowHoverColourClass: &#8216;myRowHoverClassTwo&#8217;} );<br />
&nbsp;&nbsp; &nbsp;<br />
&lt;/script&gt;</div>
<h3>mootools modules<br />
</h3>
<p>The modules required for this class is as follows:</p>
<p><strong>Core</strong></p>
<ul>
<li>Core</li>
</ul>
<p><strong>Class</strong></p>
<ul>
<li>Class</li>
</ul>
<p><strong>Native<br />
</strong></p>
<ul>
<li>Array</li>
<li>String</li>
<li>Function</li>
<li>Number</li>
<li>Element</li>
</ul>
<p><strong>Element<br />
</strong></p>
<ul>
<li>Element.Event</li>
</ul>
<h3>download</h3>
<p>Please feel free to download the <a href="http://www.andrewsellick.com/examples/tableHighlighter/tableHighlighter.rar">JavaScript Table Row Highlighter code</a>.</p>
<h3>demo</h3>
<p>Have a look for yourself at the <a target="_blank" href="http://www.andrewsellick.com/examples/tableHighlighter/">JavaScript Table Row Highlighter demo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewsellick.com/85/javascript-table-row-highlighter-class-using-mootools/feed</wfw:commentRss>
		</item>
		<item>
		<title>Simple 3D Carousel using Mootools</title>
		<link>http://www.andrewsellick.com/75/simple-3d-carousel-using-mootools</link>
		<comments>http://www.andrewsellick.com/75/simple-3d-carousel-using-mootools#comments</comments>
		<pubDate>Wed, 31 Oct 2007 10:18:10 +0000</pubDate>
		<dc:creator>andy</dc:creator>
		
		<category><![CDATA[Mootools]]></category>

		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.andrewsellick.com/75/simple-3d-carousel-using-mootools</guid>
		<description><![CDATA[After researching a good method to create a 3D Carousel I came across two resources that intrigued me; firstly GOTOANDLEARN.com which provided an amazing flash 3D Carousel tutorial and then the jQuery 3D Carousel.

After having a play about with these two examples for a while it got me in to thinking, &#8220;how easy it would [...]]]></description>
			<content:encoded><![CDATA[<p>After researching a good method to create a 3D Carousel I came across two resources that intrigued me; firstly GOTOANDLEARN.com which provided an amazing flash 3D Carousel tutorial and then the jQuery 3D Carousel.</p>
<p><img width="309" height="122" alt="3D Carousel" src="http://www.andrewsellick.com/wp-content/uploads/Image/small-simple-3d-carousel.png" /></p>
<p>After having a play about with these two examples for a while it got me in to thinking, &ldquo;how easy it would it be to implement a 3D Carousel myself?&ldquo;</p>
<p>Well after carrying out some research and using the two above examples as a foundation I created a basic 3D Carousel.  This example will be the first instalment in which I demonstrate the basic Carousel and further more advanced tutorials will be added at a later date.</p>
<p>So here we go&hellip;</p>
<h3>code</h3>
<h4>html</h4>
<p>As can be seen below the HTML is very simple and consists of a main container wrapping several divs with images inside.&nbsp; That is all that is required at this stage from an html perspective.&nbsp; Obviously the number of images and the images themselves can be changed here.</p>
<div class="code">&lt;div id=&quot;carousel&quot;&gt;<br />
&nbsp;&nbsp; &nbsp;&lt;div&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/dreamweaver.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp;&nbsp; &nbsp;<br />
&nbsp;&nbsp; &nbsp;&lt;div&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/director.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp;&nbsp; &nbsp;<br />
&nbsp;&nbsp; &nbsp;&lt;div&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/flash.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp;&nbsp; &nbsp;<br />
&nbsp;&nbsp; &nbsp;&lt;div&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/freehand.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp;&nbsp; &nbsp;<br />
&nbsp;&nbsp; &nbsp;&lt;div&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/swf-player.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&nbsp;&nbsp; &nbsp;<br />
&nbsp;&nbsp; &nbsp;&lt;div&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;images/coldfusion.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;<br />
&lt;/div&gt;</div>
<h4>css</h4>
<p>The CSS is also very&nbsp; simple setting the style attributes for the main container as well as the images width and height within each of their containing divs.&nbsp; One point to note would be that the width and height of the carousel container should be edited as desired to meet your needs althoug further editing will be needed below as shown.</p>
<div class="code">&lt;style&gt;</p>
<p>&nbsp;&nbsp; &nbsp;#carousel{<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;background-color:#000000;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;width:700px;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;height:400px;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;position:relative;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;border:1px solid #FFFFFF;<br />
&nbsp;&nbsp; &nbsp;}<br />
&nbsp;&nbsp; &nbsp;<br />
&nbsp;&nbsp; &nbsp;img{<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;width:100%;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;height:100%;<br />
&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;border:0px solid #FFFFFF;<br />
&nbsp;&nbsp; &nbsp;}<br />
&nbsp;&nbsp; &nbsp;<br />
&lt;/style&gt;</div>
<h4>JavaScript Variables</h4>
<p>This is where understanding is required to set up the carousel.  baseSpeed is the initial speed of the carousel, the higher the value the faster it will spin, radiusX and radiusY are the horizontal and vertical radiuses of the carousel so adjust these to effectively change the width and height.</p>
<p>centerX and centerY pinpoint the center of the accordion with in the main container.  These will need to be amended if the main containers width and height attributes are amended.</p>
<p>Finally speed is used in conjunction with baseSpeed to set the initial speed of the carousel, although, the speed will be altered depending on the position x of the mouse over the carousel container.</p>
<div class="code">var baseSpeed = 0.05; <br />
var radiusX = 190; <br />
var radiusY = 40; <br />
var centerX = 300; <br />
var centerY = 190;<br />
var speed = 0.3;
</div>
<h3>demo</h3>
<p>Have a look for yourself at the <a target="_blank" href="http://www.andrewsellick.com/examples/3d-carousel/">Simple 3D Carousel demo.</a></p>
<h3>download</h3>
<p>Feel free to download the <a target="_blank" href="http://www.andrewsellick.com/examples/3d-carousel/3d-carousel.rar">Simple 3D Carousel</a>.</p>
<h3>notes</h3>
<p>This is a very basic demo and as such should not be treated as a finished product.&nbsp; I&#8217;m using this article as more of a tutorial to create clear stages between the version above and a far more advanced version that I will release in the not to distant future.</p>
<p>I&#8217;m still looking to further improve the smoothness of the carousel and new features such as automatic image reflection and arrows to manually rotate the carousel will be added in future versions.</p>
<h3>mootools modules</h3>
<p><strong>Core</strong></p>
<ul>
<li>Core</li>
</ul>
<p><strong>Class</strong></p>
<ul>
<li>Class</li>
</ul>
<p><strong>Native<br />
</strong></p>
<ul>
<li>Array</li>
<li>String</li>
<li>Function</li>
<li>Number</li>
<li>Element</li>
</ul>
<p><strong>Element<br />
</strong></p>
<ul>
<li>Element.Event</li>
</ul>
<p><strong>Window<br />
</strong></p>
<ul>
<li>Window.DomReady</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewsellick.com/75/simple-3d-carousel-using-mootools/feed</wfw:commentRss>
		</item>
		<item>
		<title>Fancy Sliding Menu for Mootools</title>
		<link>http://www.andrewsellick.com/71/fancy-sliding-menu-for-mootools</link>
		<comments>http://www.andrewsellick.com/71/fancy-sliding-menu-for-mootools#comments</comments>
		<pubDate>Tue, 09 Oct 2007 20:19:39 +0000</pubDate>
		<dc:creator>andy</dc:creator>
		
		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://www.andrewsellick.com/71/fancy-sliding-menu-for-mootools</guid>
		<description><![CDATA[ 
digg_url = "http://www.andrewsellick.com/71/fancy-sliding-menu-for-mootools";
 
&#160;

Due to the popularity of the script.aculo.us version of the Fancy Sliding Menu I decided a Mootools version was now in order.
It looks exactly the same as the the script.aculo.us, it works exactly the same as the script.aculo.us version, the only difference is it runs on Mootools.&#160;  
Right well thats [...]]]></description>
			<content:encoded><![CDATA[<div class="digg"> <script type="text/javascript">
digg_url = "http://www.andrewsellick.com/71/fancy-sliding-menu-for-mootools";
</script> <script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
<p>&nbsp;</p>
</div>
<p>Due to the popularity of the script.aculo.us version of the <a href="http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2" target="_blank">Fancy Sliding Menu</a> I decided a Mootools version was now in order.</p>
<p>It looks exactly the same as the the script.aculo.us, it works exactly the same as the script.aculo.us version, the only difference is it runs on Mootools.&nbsp; <img src='http://www.andrewsellick.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Right well thats enough of the introductions, click on the demo and download the code below.</p>
<p>Have a look for yourselves and enjoy.</p>
<p><img width="500" height="187" src="http://www.andrewsellick.com/wp-content/uploads/Image/tabslide.jpg" alt="Fancy Sliding Tab Menu" /></p>
<h3>demo</h3>
<p>Feel free to view the <a target="_blank" href="http://www.andrewsellick.com/examples/tabslideV2-mootools/">Fancy Sliding Menu for Mootools demo</a>.</p>
<h3>download</h3>
<p>Please download the <a target="_blank" href="http://www.andrewsellick.com/examples/tabslideV2-mootools/tabslideV2-mootools.rar">Fancy Sliding Menu for Mootools code</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewsellick.com/71/fancy-sliding-menu-for-mootools/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.815 seconds -->
