<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" 
      xmlns:thr="http://purl.org/syndication/thread/1.0">
  <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html" />
  <link rel="self" type="application/atom+xml" href="http://www.alohatechsupport.net/webdesignmaui/atom.xml" />
  <id>tag:www.alohatechsupport.net,2012:/webdesignmaui/1/tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-</id>
  <updated>2012-02-01T15:37:24Z</updated>
  <title>Comments for Image Menu with Jquery</title>
  <subtitle>Web Design Galdorword, Website Designer Articles and Ideas.</subtitle>
  <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.261</generator>
  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101</id>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.alohatechsupport.net/webdesignmaui-mt/mt-atom.cgi/weblog/blog_id=1/entry_id=101" title="Image Menu with Jquery" />
    <published>2009-03-15T17:46:24Z</published>
    <updated>2009-05-13T00:36:46Z</updated>
    <title>Image Menu with Jquery</title>
    <summary>Creating a Smooth Image Menu with Jquery I have always thought that imagemenu sliding effect is really cool and that it would be nice if it worked with jQuery. Introducing a Mootools image menu ported to Jquery. If you have...</summary>
    <author>
      <name>Dylan Wagstaff</name>
      <uri>http://www.alohatechsupport.net</uri>
    </author>
    
    <category term="Design Tips &amp; Techniques" />
    
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net/webdesignmaui/">
      <![CDATA[<h1>Creating a Smooth Image Menu with Jquery</h1>

<p>I have always thought that imagemenu sliding effect is really cool and that it would be  nice if it worked with jQuery. Introducing a Mootools image menu ported to Jquery. If you have ever seen the image menu javascript for mootools by phatfusion  and liked what you saw well here is a Sliding Image Menu alternative I've come up with using the power of  jquery javascript.</p>
<h3>Functionality Checklist for our Sliding Image Menu for Jquery.</h3>
<p>Here is what we need our Jquery horizontal sliding image menu to do:</p>
<ol>
  <li>Jquery compatible script.</li>
  <li>Mootools like sliding effect.</li>
  <li>Valid XHTML degrades well.</li>
  <li>Lightweight customizable script.</li>
</ol>
For this Image Menu we will be using jQuery and jquery-easing effects. I ended up adapting two versions of the image menu and will start with the more basic and straightforward one first.

For the purposes of helping visualize this demo I am using the same images found in the original Mootools ImageMenu.
<p>Let's take a look at  the XHTML, CSS, and JavaScript that makes it all work.</p>
<p><strong>Jquery Image Menu Version 1, <a href="http://www.alohatechsupport.net/examples/image-menu-1.html" target="_blank">View Demo</a>, <a href="http://www.alohatechsupport.net/downloads/image-menu-1.zip">Download Source</a></strong>.</p>
<a href="http://www.alohatechsupport.net/examples/image-menu-1.html" target="_blank"><img src="http://www.alohatechsupport.net/images/imagemenu1.jpg" alt="Jquery ImageMenu" width="475" height="163" /></a><br />
<br />
<p><strong>Here is the HTML</strong> for just the jquery Image Menu itself:</p>

<pre><code>
&lt;div class="jimgMenu"&gt;
  &lt;ul&gt;
    &lt;li class="landscapes"&gt;&lt;a href="#"&gt;Landscapes&lt;/a&gt;&lt;/li&gt;
    &lt;li class="people"&gt;&lt;a href="#"&gt;People&lt;/a&gt;&lt;/li&gt;
    &lt;li class="nature"&gt;&lt;a href="#"&gt;Nature&lt;/a&gt;&lt;/li&gt;
    &lt;li class="abstract"&gt;&lt;a href="#"&gt;Abstract&lt;/a&gt;&lt;/li&gt;
    &lt;li class="urban"&gt;&lt;a href="#"&gt;Urban&lt;/a&gt;&lt;/li&gt;
  &lt;/ul&gt;
&lt;/div&gt;</code></pre>
<br />
<br />
<p><strong>Here is The CSS</strong></p>
<div class="slide asset-more-link">
  <h4 style="cursor: pointer;">View CSS...</h4>
</div>
<div class="view" style="display: block;">
  <pre>.jimgMenu {
	position: relative;
	width: 670px;
	height: 200px;
	overflow: hidden;
	margin: 25px 0px 0px;
}

.jimgMenu ul {
	list-style: none;
	margin: 0px;
	display: block;
	height: 200px;
	width: 1340px;
	
	}

.jimgMenu ul li {
	float: left;
}

.jimgMenu ul li a {
	text-indent: -1000px;
	background:#FFFFFF none repeat scroll 0%;
	border-right: 2px solid #fff;
	cursor:pointer;
	display:block;
	overflow:hidden;
	width:78px;
	height: 200px;
}

.jimgMenu ul li.landscapes a {
	background: url(images/landscapes.jpg) repeat scroll 0%;
}

.jimgMenu ul li.people a {
	background: url(images/people.jpg) repeat scroll 0%;
}

.jimgMenu ul li.nature a {
	background: url(images/nature.jpg) repeat scroll 0%;
}
.jimgMenu ul li.abstract a {
	background: url(images/abstract.jpg) repeat scroll 0%;
}

.jimgMenu ul li.urban a {
	background: url(images/urban.jpg) repeat scroll 0%;
	min-width:310px;
	
}
</pre>
</div>
<br />
<p><strong>The JavaScript</strong></p>
<p>In the header section of your HTML file, you'll need to include jQuery and all the plug in files listed. The bare minimum setup look like this:</p>
<textarea cols="60" name="text" rows="8" style="overflow: hidden;" spellcheck="false">&lt;link href="css/jimgMenu.css" rel="stylesheet" type="text/css" /&gt;
&lt;script type="text/javascript" src="js/jquery.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/jquery-easing-1.3.pack.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/jquery-easing-compatibility.1.2.pack.js"&gt;&lt;/script&gt;
</textarea>
<br />
<br />
<p>Finally include the jquery in your page or in an attached file.</p>
  <textarea cols="60" name="text2" rows="28" style="overflow: hidden;" spellcheck="false">&lt;script type="text/javascript"&gt;
$(document).ready(function () {
  // find the elements to be eased and hook the hover event
  $('div.jimgMenu ul li a').hover(function() {    
    // if the element is currently being animated
    if ($(this).is(':animated')) {
      $(this).stop().animate({width: "310px"}, {duration: 450, easing:"easeOutQuad", complete: "callback"});
    } else {
      // ease in quickly
      $(this).stop().animate({width: "310px"}, {duration: 400, easing:"easeOutQuad", complete: "callback"});
    }
  }, function () {
    // on hovering out, ease the element out
    if ($(this).is(':animated')) {
      $(this).stop().animate({width: "78px"}, {duration: 400, easing:"easeInOutQuad", complete: "callback"})
    } else {
      // ease out slowly
      $(this).stop(':animated').animate({width: "78px"}, {duration: 450, easing:"easeInOutQuad", complete: "callback"});
    }
  });
});
&lt;/script&gt;
  </textarea>
  <br />
<p>This will activate our image menu, just remember we have css controlling most of the image menus style. You can customize the easing type and duration with the <a href="http://gsgd.co.uk/sandbox/jquery/easing/" target="_blank">jquery easing plugin</a> that we are using to achieve different slide effects.</p>
<p><strong>Jquery Image Menu Version 2, <a href="http://www.alohatechsupport.net/examples/image-menu-2.html" target="_blank">View Demo</a>, <a href="http://www.alohatechsupport.net/downloads/image-menu-2.zip">Download Source</a></strong>.</p>
<a href="http://www.alohatechsupport.net/examples/image-menu-2.html" target="_blank"><img src="http://www.alohatechsupport.net/images/imagemenu2.jpg" alt="Image Menu For jQuery" width="475" height="211" /></a> <br />
<br />
<p>For this second version I have used <a href="http://www.jeremymartin.name/projects.php?project=kwicks" target="_blank">kwicks</a> to help with the ImageMenu animation. The advantage to using kwicks with our sliding image menu is the additional functionality that it brings in the form of sticky menu items which will stay open and custom events such as on click actions instead of hover.</p>
<p><strong>The HTML</strong> remains the same for this version of jquery Image Menu except for the use of id instead of class.</p>
<pre><code>
&lt;div class="jimgMenu"&gt;
  &lt;ul&gt;
    &lt;li id="landscapes"&gt;&lt;a href="#"&gt;Landscapes&lt;/a&gt;&lt;/li&gt;
    &lt;li id="people"&gt;&lt;a href="#"&gt;People&lt;/a&gt;&lt;/li&gt;
    &lt;li id="nature"&gt;&lt;a href="#"&gt;Nature&lt;/a&gt;&lt;/li&gt;
    &lt;li id="abstract"&gt;&lt;a href="#"&gt;Abstract&lt;/a&gt;&lt;/li&gt;
    &lt;li id="urban"&gt;&lt;a href="#"&gt;Urban&lt;/a&gt;&lt;/li&gt;
  &lt;/ul&gt;
&lt;/div&gt;
</code></pre>
<br />
<br />
<p><strong>The CSS is adapted slightly for kwicks</strong></p>

  <pre>.jimgMenu {
	position:relative;
	margin: 0px 0px 0px 50px;
	padding: 0px;
	width:475px;
	height:200px;
	overflow: hidden;
}
.jimgMenu ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: block;
	height: 200px;
	position: relative;
	}	
.jimgMenu ul li {
	width: 95px;
	float: left;
	display: block;
	overflow: hidden;
}
.jimgMenu ul li a {
	text-indent: -1000px;
	background:#fff repeat scroll 0%;
	border-right: 2px solid #fff;
	cursor:pointer;
	display:block;
	overflow: hidden;
	height: 200px;
}
.jimgMenu ul li#landscapes a {
	background: url(images/landscapes.jpg) repeat scroll 0%; 
}
.jimgMenu ul li#people a {
	background: url(images/people.jpg) repeat scroll 0%;
}

.jimgMenu ul li#nature a {
	background: url(images/nature.jpg) repeat scroll 0%; 
}
.jimgMenu ul li#abstract a {
	background: url(images/abstract.jpg) repeat scroll 0%;
}
.jimgMenu ul li#urban a {
	background: url(images/urban.jpg) repeat scroll 0%;
	border-right-style: none;
}
</pre>
<br />
<p><strong>The JavaScript</strong></p>
<p>In the header section of your HTML, you will need to include jQuery and all the files below. The bare minimum setup will look like this:</p>
<textarea cols="60" name="text" rows="10" style="overflow: hidden;" spellcheck="false">&lt;link href="css/jimgMenukwicks.css" rel="stylesheet" type="text/css" /&gt;
&lt;script type="text/javascript" src="js/jquery.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/jquery-easing-1.3.pack.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/jquery-easing-compatibility.1.2.pack.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/jquery.kwicks-1.5.1.pack.js"&gt;&lt;/script&gt;
</textarea>
<br />
<p>This will activate our jQuery Sliding Image Menu plug-in. The last step is to include the script in our page by placing this script in your html head or document body.</p>
<textarea cols="60" name="text" rows="7" style="overflow: hidden;" spellcheck="false">&lt;script type="text/javascript"&gt;
$().ready(function() {
	$('.jimgMenu ul').kwicks({max: 310, duration: 300, easing: 'easeOutQuad', complete: 'callback'});
	});
&lt;/script&gt;
</textarea>
<br />
<br />
<p>Enjoy an Image Menu sliding effect for Jquery.</p>]]>
      
    </content>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:57</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-57" />
    <title>Comment from Sam on 2009-04-23 - Good stuff thanks for the help.</title>
    <author>
        <name>Sam</name>
        <uri>http://undefined</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://undefined">
        <![CDATA[<p>Good stuff thanks for the help.</p>]]>
    </content>
    <published>2009-04-24T05:21:12Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:61</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-61" />
    <title>Comment from Olivier on 2009-04-26 - Nice script, thanks sharing. I just wonder if</title>
    <author>
        <name>Olivier</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Nice script, thanks sharing. <br />
I just wonder if it possible to have an other item selected, displaying the current page ?</p>]]>
    </content>
    <published>2009-04-26T19:41:13Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:62</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-62" />
    <title>Comment from Dylan Wagstaff on 2009-04-26 - Aloha, Thanks Not sure if I understand exactly</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>Aloha, Thanks<br />
Not sure if I understand exactly what you want to do but you can  Use Sticky and Custom Events.</p>

<p>For Example: sticky : true, to have an image stay open or you can add <br />
event : 'click' to make the menu animate on click instead of hover.</p>

<p>The code for the second image menu version with sticky images and on click events instead of hover would look like,</p>

<p>$().ready(function() {<br />
	$('.jimgMenu ul').kwicks({max: 310, duration: 300, sticky: true, event: 'click', easing: 'easeOutQuad', complete: 'callback'});<br />
});</p>]]>
    </content>
    <published>2009-04-26T21:50:09Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:70</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-70" />
    <title>Comment from Jasmine on 2009-04-30 - Perfect, just what I was looking for thanks!</title>
    <author>
        <name>Jasmine</name>
        <uri>http://undefined</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://undefined">
        <![CDATA[<p>Perfect, just what I was looking for thanks!</p>]]>
    </content>
    <published>2009-04-30T21:43:24Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:99</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-99" />
    <title>Comment from DigitalBill on 2009-05-02 - Thanks for the great tips. I&apos;ve been wrestling</title>
    <author>
        <name>DigitalBill</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Thanks for the great tips. I've been wrestling with the original mootools imagemenu, and I was happy to see this jQuery solution as an alternative. But I'm running into some of the same problems with this one...</p>

<p>I find I can get everything to work as long as I stick to five images and keep the ref names the same (i.e. Landscapes, People, Nature, etc.), but as soon as I introduce a 6th -- or in my case, a 6th-7th-8th-9th -- image or reference the image(s) by a different name, everything breaks.</p>

<p>What I'm looking for: Nne (9) images to load, the far left image to be displayed onOpen, the images to slide on rollover and an on click action which calls a URL for each image. I've checked and re-checked spelling and syntax, but I'm lost.</p>

<p>Any thoughts?</p>]]>
    </content>
    <published>2009-05-02T22:06:42Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:101</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-101" />
    <title>Comment from Dylan Wagstaff on 2009-05-02 - Hi, To include more images you have to</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>Hi,<br />
To include more images you have to add them to both the css file and to the page list of images. You will also need to adjust the css .jimgMenu width to match how may images are included and make sure that overflow : hidden is not hiding your included images. As long as you use the same id labels within the css and page it will be called.<br />
I cant seem to duplicate your issue. A sample to look at might help but you are able to add more images through adjusting the css and in-page html. </p>]]>
    </content>
    <published>2009-05-02T22:53:42Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:102</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-102" />
    <title>Comment from DigitalBill on 2009-05-02 - Thanks, Dylan. I&apos;ve tried that and so far</title>
    <author>
        <name>DigitalBill</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Thanks, Dylan. I've tried that and so far come up empty, but I've worked and re-worked this page and its support files so much now that it's a mess.</p>

<p>I'll go back and start the page from scratch and post the URL of the work-in-progress if I continue to have probs.</p>

<p>Either way, I'll report back on my success/failure.</p>]]>
    </content>
    <published>2009-05-02T23:01:19Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:103</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-103" />
    <title>Comment from DigitalBill on 2009-05-02 - Baby steps, I guess... I have my nine</title>
    <author>
        <name>DigitalBill</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Baby steps, I guess...</p>

<p>I have my nine 99) images in place, a 1px right border separating them and the slides perform as they should. But I'm still wrestling with an issue where the jimgMenu div is pushing the images to the right 40px, and apparently I have a conflict with .js libraries because I can either get a LightWindow effect to work on a link in a div above the imagemenu OR the imagemenu works, but not both. And it appears to be affected not only by the order of the .css files but by the .js libraries themselves.</p>

<p>I'll post a URL, but can you really tell much without the .css files too? (Ah, yes, Firebug!)</p>]]>
    </content>
    <published>2009-05-03T04:51:02Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:106</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-106" />
    <title>Comment from Dylan Wagstaff on 2009-05-03 - Good to hear your making progress. Yes javascript</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>Good to hear your making progress.<br />
Yes javascript  has to be called in the order it is written or else you wind up with undefined variables and functions. Jquery will always conflict with lightbox as it is Mootols based. As an alternative jquery thickbox works great and is actually faster than lightbox. Or you can add a jquery no conflict to the jquery call and script.<br />
Example:<br />
add var $j = jQuery.noConflict(); to top of script than replace all the $ symbols with $j<br />
Long live Firebug :P</p>]]>
    </content>
    <published>2009-05-03T17:18:21Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:108</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-108" />
    <title>Comment from DigitalBill on 2009-05-03 - Well, &quot;progress&quot; is a relative term... Please take</title>
    <author>
        <name>DigitalBill</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Well, "progress" is a relative term...<br />
Please take a look at: <a href="http://www.tampabayhistorycenter.org/homeimagemenu_jq.html" rel="nofollow">where I am right now</a><br />
The image menu works, but I still haven't been able to figure out the 40px "push" to the right. The min-width on the last image is what I'd like on the first image onOpen, but when I move the property up to the first image it throws things off even more. The HREFs work, but ideally I'd like to try a click-to-open/stick/2nd-click-to-gotoURL option. And of course there's the lightwindow conflict, as this page doesn't reflect any of the changes you suggested (I may try the no-conflict first, then take a look at thickbox if/when I ever get these other issues under control).<br />
In a nut shell: Slides work. 40px shift to the right. Images don't "shuffle" to fill the space. Menu opens with last image open when I'd like it to open with the first image.<br />
Closer, perhaps. Any less frustrated? Negatory!</p>]]>
    </content>
    <published>2009-05-03T18:40:51Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:110</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-110" />
    <title>Comment from Dylan Wagstaff on 2009-05-03 - Hi Bill, Your most certainly are getting conflicts</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>Hi Bill,<br />
Your most certainly are getting conflicts by calling scriptaculous and portotype / lightbox and jquery. I didnt realize you were referencing the first version of the script.<br />
For the 40px margin you want to add<br />
left : -40px;<br />
position : relative;<br />
to .jimgMenu ul</p>

<p>I would also change the width in your #imageMenu_jq to 100%<br />
To have the firstimage open add width : 415px to first image .css but keep the min-width on last as well.</p>

<p>This works but the only problem is the script is only looking at the hover state. So all is well as long as the user actually hovers over the first open image but if the other images are hovered over before it will not collapse. This is one of the reasons I developed version 2 of the script with kwicks which has a 3rd animated state and enabled me to not reinvent the wheel so to speak.</p>]]>
    </content>
    <published>2009-05-03T20:31:48Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:121</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-121" />
    <title>Comment from DigitalBill on 2009-05-04 - OK, I got it working, thanks to your</title>
    <author>
        <name>DigitalBill</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>OK, I got it working, thanks to your tips. Thanks!</p>

<p>Before I take a look at the second version of the script with kwicks and solve that sticky dilemma, I experimented with the jquery no conflict to avoid the lightwindow issue. But I made these changes to the page:</p>

<p><br />
add var $j = jQuery.noConflict();<br />
$j(document).ready(function () {<br />
  // find the elements to be eased and hook the hover event<br />
  $j('div.jimgMenu ul li a').hover(function() {    <br />
    // if the element is currently being animated<br />
    if ($j(this).is(':animated')) {<br />
      $j(this).stop().animate({width: "415px"}, {duration: 450, easing:"easeOutQuad", complete: "callback"});<br />
    } else {<br />
      // ease in quickly<br />
      $j(this).stop().animate({width: "415px"}, {duration: 400, easing:"easeOutQuad", complete: "callback"});<br />
    }<br />
  }, function () {<br />
    // on hovering out, ease the element out<br />
    if ($j(this).is(':animated')) {<br />
      $j(this).stop().animate({width: "48px"}, {duration: 400, easing:"easeInOutQuad", complete: "callback"})<br />
    } else {<br />
      // ease out slowly<br />
      $j(this).stop(':animated').animate({width: "48px"}, {duration: 450, easing:"easeInOutQuad", complete: "callback"});<br />
    }<br />
  });<br />
});<br />
</p>

<p>and it didn't work. So I did a find-and-replace in the jquery.js itself ($j for $ throughout) and it still didn't work. (Well, the conflict went away, but the imagemenu stopped working.)</p>

<p>Must be sloppy typing or ADD on my part, eh?</p>]]>
    </content>
    <published>2009-05-04T19:51:06Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:122</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-122" />
    <title>Comment from DigitalBill on 2009-05-04 - Well, here&apos;s the kwicks version: tester Looks great</title>
    <author>
        <name>DigitalBill</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Well, here's the kwicks version:<br />
<a href="http://www.tampabayhistorycenter.org/homeimagemenu_jqkwicks.html" rel="nofollow">tester</a><br />
Looks great in Firefox; breaks in Safari.</p>

<p>Back to the drawing board in search of a fix and a combo of script #1';s ability to open with the first left-hand image displayed and script #2's ability to slide all of the images back equally.</p>]]>
    </content>
    <published>2009-05-04T22:55:35Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:123</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-123" />
    <title>Comment from Dylan Wagstaff on 2009-05-04 - Looks Great! I think if anything my examples</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Looks Great! I think if anything my examples above of a jquery image menu really point out how jQuery is css based. Whether it be a small custom written script or full on plug-in jquery output is based on the css you can throw at it.</p>

<p>If Safari is not agreeing I'd bet it's a simple css fix. Try searching for safai css issues and fixes. Many times mac compatibility requires a small css hack depending on the rest of your layout. Also I'd suggest valid xhtml strict. I've viewed this menu on an iphone and it looked just as good with valid xhtml strict. You could also serve up a page just for safari users. ;P</p>

<p>Your second attempt at jquery no conflict would have worked if I had been carefuller typing. I meant add as include. :P<br />
Change:<br />
add var $j = jQuery.noConflict();<br />
To:<br />
var $j = jQuery.noConflict();</p>]]>
    </content>
    <published>2009-05-05T02:23:49Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:130</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-130" />
    <title>Comment from DigitalBill on 2009-05-06 - Thanks for the clarification on that no conflict</title>
    <author>
        <name>DigitalBill</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Thanks for the clarification on that no conflict -- I made the change and it works like a charm on both pages!</p>

<p>But why, even the -50px cheat on that div to get the banners to align left in the first page throw things off for me in IE7, suggesting the cheat *isn't* needed for IE. @#$%^*!!</p>

<p>I guess I'm staring at either some browser-specific CSS or choosing which platform(s)/browser(s) to ignore.</p>]]>
    </content>
    <published>2009-05-06T18:00:32Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:131</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-131" />
    <title>Comment from Dylan Wagstaff on 2009-05-06 - Hi I see what your saying. The 50px</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>Hi I see what your saying. The 50px margin comes from the margin setting.<br />
.jimgMenu {<br />
height:426px;<br />
left:-50px;<br />
margin:0 0 0 50px;<br />
overflow:hidden;<br />
padding:0;<br />
position:relative;<br />
width:801px;<br />
}<br />
Your left:-50px is not needed, simply change to:<br />
.jimgMenu {<br />
height:426px;<br />
margin:0;<br />
overflow:hidden;<br />
padding:0;<br />
position:relative;<br />
width:801px;<br />
}<br />
Overall it seems like the trouble you ar having is with your css. When you view my example you will see the 50px margin is just for placement on the example page. If you toggle the css on and off with firebug this becomes very obvious. It is also very easy to set css for ie using an if ie conditional css statement. IE conditional CSS is a practical and common work around that gets placed in your pages head and look like:<br />
&lt;!--[if IE]&gt; &lt;style type="text/css"&gt;.jimgmenu {example:css;} &lt;/style&gt; &lt;![endif]--&gt;<br />
</p>]]>
    </content>
    <published>2009-05-06T19:40:13Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:132</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-132" />
    <title>Comment from DigitalBill on 2009-05-06 - Just wish I could use firebug in Safari</title>
    <author>
        <name>DigitalBill</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Just wish I could use firebug in Safari or IE to test some changes on-the-fly as I can with FF.  :-(</p>]]>
    </content>
    <published>2009-05-07T04:15:31Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:142</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-142" />
    <title>Comment from eadriang75 on 2009-05-15 - First I&apos;d like to say thank you for</title>
    <author>
        <name>eadriang75</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>First I'd like to say thank you for this jQuery version. The issue that I'm having is, of course, in IE6. On Menu v.1 the graphic assigned the min-width will default to the preview width of 78px after I have hovered out; leaving an ugly space to the right of "Urban."</p>

<p>Anyone find a work around for this issue? Please advise. Thank you.  </p>]]>
    </content>
    <published>2009-05-15T14:20:29Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:143</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-143" />
    <title>Comment from Dylan Wagstaff on 2009-05-15 - You can try display:inline-block instead of block.</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>You can try display:inline-block instead of block.</p>]]>
    </content>
    <published>2009-05-16T00:08:59Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:148</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-148" />
    <title>Comment from Tim on 2009-05-15 - Hello adriang, I would first try inline-block in</title>
    <author>
        <name>Tim</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hello adriang, I would first try inline-block in your style sheet as suggested. If that doesn't work take a look at any possible css in your current page that could be effecting the menu. Most likely a margin or padding element is throwing the block display alignment off.</p>]]>
    </content>
    <published>2009-05-16T03:32:32Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:187</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-187" />
    <title>Comment from Rainer on 2009-05-18 - Very nice script - thanks a lot! Is</title>
    <author>
        <name>Rainer</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Very nice script - thanks a lot!<br />
Is there any way to address active and hover states for the menu?</p>]]>
    </content>
    <published>2009-05-18T15:40:41Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:188</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-188" />
    <title>Comment from Dylan Wagstaff on 2009-05-18 - Hi Rainer, thanks. Yes I just uploaded an</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>Hi Rainer, thanks.<br />
Yes I just uploaded an updated version #1 which will add a style-able class="active" on hover to each list item and remove it on mouse out. Take a look with firebug and you will see the class being added and removed to each element as you hover over them. This is done with Jquery's .addClass() .removeClass()<br />
<a href="http://www.alohatechsupport.net/examples/image-menu-1.html">View Updated Demo</a><br />
For the second version with kwicks simply add a class to each li list item with the same name as the id. Example:<br />
&lt;li class="landscapes" id="landscapes"&gt;&lt;a href="#"&gt;Landscapes&lt;/a&gt;&lt;/li&gt; this will allow kwicks to add an active class to each image menu item as you hover over it.</p>]]>
    </content>
    <published>2009-05-18T17:47:32Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:189</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-189" />
    <title>Comment from Rainer on 2009-05-20 - Hi, thanl you very much! Just what I</title>
    <author>
        <name>Rainer</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hi, thanl you very much!<br />
Just what I was looking for.<br />
Perfect.</p>]]>
    </content>
    <published>2009-05-20T11:43:03Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:197</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-197" />
    <title>Comment from Dan on 2009-05-22 - Hi Dylan, I took a look at your</title>
    <author>
        <name>Dan</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hi Dylan, I took a look at your version 1 and it's good with one small exception. In order to get the active class included and removed on a quick mouse roll over you should put the .addClass and .removeClass call before stop().<br />
Like so: .addClass("active").stop()</p>]]>
    </content>
    <published>2009-05-23T00:02:28Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:198</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-198" />
    <title>Comment from Dylan Wagstaff on 2009-05-22 - ...nice, included and updated in the Demo. thanks</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>...nice, included and updated in the Demo. thanks for spotting and pointing that out.</p>]]>
    </content>
    <published>2009-05-23T00:12:34Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:200</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-200" />
    <title>Comment from DigitalBill on 2009-05-26 - Dylan, just wanted to thank you again for</title>
    <author>
        <name>DigitalBill</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Dylan, just wanted to thank you again for your help with this. V2 is working flawlessly now, due in no small part to your advice and guidance.</p>

<p>The use of kwicks is terrific. I haven't done much experimentation with sticky menus, but on-click events work just fine.</p>]]>
    </content>
    <published>2009-05-26T19:45:27Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:202</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-202" />
    <title>Comment from Dylan Wagstaff on 2009-05-27 - Hi Bill, Good to hear. You integrated the</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>Hi Bill, Good to hear. You integrated the image menu very nicely into the site, well done.</p>]]>
    </content>
    <published>2009-05-28T01:10:45Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:321</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-321" />
    <title>Comment from leo on 2009-08-06 - This system works great on my computer but</title>
    <author>
        <name>leo</name>
        <uri>http://aercosystems.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://aercosystems.com/">
        <![CDATA[<p>This system works great on my computer but refuses to work when uploaded to host server: <a href="http://aercosystems.com/image-menu-2.html" rel="nofollow">http://aercosystems.com/image-menu-2.html</a> .  Any thoughts?</p>]]>
    </content>
    <published>2009-08-06T14:40:21Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:322</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-322" />
    <title>Comment from Dylan Wagstaff on 2009-08-06 - Aloha Leo, It would appear that the packed</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>Aloha Leo,<br />
It would appear that the packed js files have become corrupted upon upload as they are throwing errors. Try to upload an unpacked and un-minified version of jquery, kwicks and easing to see if that is the problem.</p>]]>
    </content>
    <published>2009-08-06T16:01:28Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:323</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-323" />
    <title>Comment from leo on 2009-08-07 - Thanks! The third time was a charm.</title>
    <author>
        <name>leo</name>
        <uri>http://aercosystems.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://aercosystems.com/">
        <![CDATA[<p>Thanks! The third time was a charm.</p>]]>
    </content>
    <published>2009-08-08T09:08:01Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:324</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-324" />
    <title>Comment from leo on 2009-08-09 - Is there an option to select which image</title>
    <author>
        <name>leo</name>
        <uri>http://aercosystems.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://aercosystems.com/">
        <![CDATA[<p>Is there an option to select which image will be open when the page first loads?</p>

<p>My current code:</p>

<p><br />
$().ready(function() {</p>

<p>	$('.jimgMenu ul').kwicks({max: 310, duration: 1500, sticky: true, easing: 'easeOutBounce'});</p>

<p>	});<br />
</p>

<p>Thanks for a great application!</p>]]>
    </content>
    <published>2009-08-09T15:41:18Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:325</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-325" />
    <title>Comment from leo on 2009-08-09 - Sorry. I found the option: $().ready(function() { $(&apos;.jimgMenu</title>
    <author>
        <name>leo</name>
        <uri>http://aercosystems.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://aercosystems.com/">
        <![CDATA[<p>Sorry.  I found the option:</p>

<p><br />
$().ready(function() {</p>

<p>	$('.jimgMenu ul').kwicks({<b>defaultKwick:2,</b> max: 310, duration: 1500, sticky: true, easing: </p>

<p>'easeOutBounce'});</p>

<p>	});<br />
</p>]]>
    </content>
    <published>2009-08-09T17:26:23Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:339</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-339" />
    <title>Comment from Rainer on 2009-09-11 - Oh, this is great... I was just about</title>
    <author>
        <name>Rainer</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Oh, this is great... I was just about to ask how to address which kwick will be open. But... is there a way to even address a certain state of this kwick?<br />
For example the actice one?</p>]]>
    </content>
    <published>2009-09-11T12:45:05Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:340</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-340" />
    <title>Comment from Dylan Wagstaff on 2009-09-12 - Hi Rainer, thanks. Kwicks should be adding the</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>Hi Rainer, thanks.</p>

<p>Kwicks should be adding the class="active" to each pic as it is hovered over. From there you should be able to style the active class via css.</p>]]>
    </content>
    <published>2009-09-12T17:14:54Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:341</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-341" />
    <title>Comment from Rainer on 2009-09-12 - I&apos;m not sure if you got my question</title>
    <author>
        <name>Rainer</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>I'm not sure if you got my question wrong or I do not understand your reply correctly...<br />
I would like to open the page with a certain kwick (for example "defaultKwick:2") and in a given state (i.e. active or hover or...). Is tehre a way to address a) which kwick to open and b) in which state it is shown?</p>

<p>Thank you very much in advance...</p>]]>
    </content>
    <published>2009-09-12T22:06:43Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:343</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-343" />
    <title>Comment from nemo on 2009-09-16 - Using image menu vs 2 Works fine in</title>
    <author>
        <name>nemo</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Using image menu vs 2<br />
Works fine in Dreamweaver CS 4 in all respects when saved and viewed in browser it looks great. When i upload to server and go to link in browser one of the images will not show it is just a blank spot. The blank one is the 7 th image of 9 total. Also all of the images past the 5 th one do not have a white edge like 1-5 images.</p>

<p>Any thoughts?<br />
Thanks</p>]]>
    </content>
    <published>2009-09-17T05:02:46Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:350</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-350" />
    <title>Comment from DigitalBill on 2009-10-12 - Well, I&apos;m back again. I&apos;ve enjoyed months of</title>
    <author>
        <name>DigitalBill</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Well, I'm back again. I've enjoyed months of error-free performance, but now that changes have been made to the client's page which require six banners to the right of a left-hand sidebar in place of the previous full-width 9-image setup, I'm getting headaches from IE again.</p>

<p>Page displays and works fine in Firefox and Safari, but all flavors of IE render the slider images as invisible. In other words, they're not there at all.</p>

<p>I've kept the ref files the same, changing only the params regarding location, no. of images, width, etc., but I'm lost on what IE is barfing on.</p>

<p>???</p>]]>
    </content>
    <published>2009-10-13T04:17:32Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:353</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-353" />
    <title>Comment from Rob El-Hani on 2009-10-21 - Hi, This is a fantastic scrip and many</title>
    <author>
        <name>Rob El-Hani</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hi,</p>

<p>This is a fantastic scrip and many thanks for sharing..</p>

<p>Can this image menu be positioned vertically rather than as is horizontal? If so, which bit of code needs to be changed.</p>

<p>Many thanks</p>]]>
    </content>
    <published>2009-10-22T09:01:36Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:354</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-354" />
    <title>Comment from Gaius on 2009-10-23 - These are amazing! Thank you!</title>
    <author>
        <name>Gaius</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>These are amazing! Thank you!</p>]]>
    </content>
    <published>2009-10-23T12:10:05Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:355</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-355" />
    <title>Comment from aolee on 2009-10-26 - Is it possible that when user click the</title>
    <author>
        <name>aolee</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Is it possible that when user click the image, the image stays open? (hover should still works). What I have in mind is, when u hover on the image, kwicks perform normally. Upon clicking a specific image, the image stays open, and i will load something on the body, based on the image clicked? hope you didn't got confused. Thanks.</p>]]>
    </content>
    <published>2009-10-27T03:11:08Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:361</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-361" />
    <title>Comment from Google Account on 2009-11-27 - Hi, I installed this on a WordPress MU-BuddyPress</title>
    <author>
        <name>Google Account</name>
        <uri>https://www.google.com/accounts/ManageAccount</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="https://www.google.com/accounts/ManageAccount">
        <![CDATA[<p>Hi,</p>

<p>I installed this on a WordPress MU-BuddyPress site.</p>

<p>It works perfectly on FireFox and Chrome, but on Internet Explorer it won't work.</p>

<p>Error: j( ---- ).livequery is not a function. </p>

<p>Any ideas? I haven't been able to fix it.</p>]]>
    </content>
    <published>2009-11-28T03:39:05Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:362</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-362" />
    <title>Comment from Google Account on 2009-11-27 - By the way the site I was talking</title>
    <author>
        <name>Google Account</name>
        <uri>https://www.google.com/accounts/ManageAccount</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="https://www.google.com/accounts/ManageAccount">
        <![CDATA[<p>By the way the site I was talking about is </p>

<p><a href="http://forum.roam2rome.com" rel="nofollow">here</a></p>]]>
    </content>
    <published>2009-11-28T03:41:03Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:363</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-363" />
    <title>Comment from Google Account on 2009-11-27 - I solved the &quot;not a function&quot; error code.</title>
    <author>
        <name>Google Account</name>
        <uri>https://www.google.com/accounts/ManageAccount</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="https://www.google.com/accounts/ManageAccount">
        <![CDATA[<p>I solved the "not a function" error code.</p>

<p>Now I isolated to problem to kwicks-1.5.1.js</p>

<p>This works beautifully in FF and Chrome.<br />
But it doesn't work at all on IE.</p>

<p>When I delete kwicks, there are no error codes, and when I return it, IE is giving me the error:</p>

<p>"object doesn't support this property or method"</p>

<p>Hmm...</p>]]>
    </content>
    <published>2009-11-28T06:58:33Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:364</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-364" />
    <title>Comment from aolee on 2009-11-27 - looks like there&apos;s now way for the image</title>
    <author>
        <name>aolee</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>looks like there's now way for the image to stay open when clicked? in <a href="http://www.phatfusion.net/imagemenu/" rel="nofollow">http://www.phatfusion.net/imagemenu/</a> image stays open but hover still works when mouse-hovered on other images.</p>]]>
    </content>
    <published>2009-11-28T07:07:31Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:365</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-365" />
    <title>Comment from Google Account on 2009-11-28 - Found the solution! For this to work in</title>
    <author>
        <name>Google Account</name>
        <uri>https://www.google.com/accounts/ManageAccount</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="https://www.google.com/accounts/ManageAccount">
        <![CDATA[<p>Found the solution!</p>

<p>For this to work in IE, you need to open Kiwicks-1.5.1 file...</p>

<p>Look for:<br />
container=$(this);</p>

<p>And replace with this<br />
var container=$(this);</p>

<p>Now it works in IE!</p>]]>
    </content>
    <published>2009-11-28T23:00:30Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:366</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-366" />
    <title>Comment from Dylan on 2009-11-29 - Thanks for sharing the ie fix. In response</title>
    <author>
        <name>Dylan</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Thanks for sharing the ie fix. </p>

<p>In response to aolee you can implement the sticky function within kwicks as well as a click event to have them stay open like so...</p>

<p>$().ready(function() {<br />
	$('.jimgMenu ul').kwicks({<br />
		isVertical : true,<br />
		sticky : true,<br />
		event : 'click'<br />
	});<br />
});</p>

<p>In response to Rob El-Hani the above example also shows the use a vertical setup option which will require the css to be adjusted as well.</p>]]>
    </content>
    <published>2009-11-29T18:15:58Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:367</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-367" />
    <title>Comment from artzy65 on 2009-12-07 - I&apos;m working in Dreamweaver CS4 (Mac) and need</title>
    <author>
        <name>artzy65</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>I'm working in Dreamweaver CS4 (Mac) and need help inserting the Jquery Image Menu (version 2) into my document. I have the basic layout (without images) at <a href="http://pages.interlog.com/~pagewise/basiclayout.html" rel="nofollow">http://pages.interlog.com/~pagewise/basiclayout.html</a></p>

<p>I'm currently using the Phatfusion version, and although it works fine in all Mac browsers and in IE 8, Firefox and Safari in WinXP, it breaks in IE 6/7. I'm at least able to center it in XP using conditional style sheets, but cannot edit it furthur; I know some css and js tweaks but not nearly enough.... I'm not a coder.</p>

<p>Here is the test page with images (using Phatfusion version): <a href="http://pages.interlog.com/~pagewise/carbonneon5.html" rel="nofollow">http://pages.interlog.com/~pagewise/carbonneon5.html</a></p>

<p>Any suggestions would be greatly appreciated.</p>]]>
    </content>
    <published>2009-12-07T19:17:04Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:368</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-368" />
    <title>Comment from aolee on 2010-01-03 - hi Dylan, sorry but your code doesn&apos;t work,</title>
    <author>
        <name>aolee</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>hi Dylan,<br />
sorry but your code doesn't work, it stays open when clicked but doesn't ease when hovered. Check out the original from mootools version. when u clicked on an image it will open, but when u try hovering the other images, it will move. <a href="http://www.phatfusion.net/imagemenu/" rel="nofollow">http://www.phatfusion.net/imagemenu/</a></p>

<p>thanks </p>]]>
    </content>
    <published>2010-01-04T06:15:37Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:376</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-376" />
    <title>Comment from Google Account on 2010-01-17 - Hello, I, too, was having a lot of</title>
    <author>
        <name>Google Account</name>
        <uri>https://www.google.com/accounts/ManageAccount</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="https://www.google.com/accounts/ManageAccount">
        <![CDATA[<p>Hello,</p>

<p>I, too, was having a lot of problems getting this going how I wanted with Mootools.  Within 15 minutes, I had this one pretty well laid out how I like it.  One question, though - Can I make my first graphic sticky, use mouseover to scroll effects, and make onclick make the graphic that the user clicked on sticky?</p>

<p>Thanks,<br />
Scott</p>]]>
    </content>
    <published>2010-01-17T22:50:25Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:383</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-383" />
    <title>Comment from MasterJuh on 2010-04-27 - I&apos;ve tried to have this awesome menu system</title>
    <author>
        <name>MasterJuh</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>I've tried to have this awesome menu system as a "main categories" menu, and to insert two level submenu inside the different parts. But I didn't manage to get it work: the second level of menu doesn't develop.<br />
If somebody want to check and give advise, he or she is very welcome.<br />
My test page is <a href="http://masterju.nodns.netavous.net/ensemble6.html" rel="nofollow">here</a>.</p>

<p>Thanks for your work<br />
</p>]]>
    </content>
    <published>2010-04-27T14:19:19Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:392</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-392" />
    <title>Comment from Google Account on 2010-05-12 - Once switching the menu to be vertical, awkward</title>
    <author>
        <name>Google Account</name>
        <uri>https://www.google.com/accounts/ManageAccount</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="https://www.google.com/accounts/ManageAccount">
        <![CDATA[<p>Once switching the menu to be vertical, awkward spacing appears between the images when hovering. </p>

<p>Image height: 200px<br />
The images below cover 50% (100px) (can't figure out how to change that) and the space is another 100px.</p>

<p>Anyone got any idea how to eliminate the spacing? All margins and padding are set to 0.</p>

<p>Cheers.</p>]]>
    </content>
    <published>2010-05-13T03:22:48Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:393</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-393" />
    <title>Comment from Google Account on 2010-05-12 - I set the menu to be vertical and</title>
    <author>
        <name>Google Account</name>
        <uri>https://www.google.com/accounts/ManageAccount</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="https://www.google.com/accounts/ManageAccount">
        <![CDATA[<p>I set the menu to be vertical and now spacing shows between the images (about 100px) when they slide out to show the active image. (images A,B,C: B and C slide down, leaving a 100px gap between the bottom of A and the top of B)<br />
Also I can't, for the life of me figure out how to adjust the size of the preview image (how much is covered).</p>

<p>Anyone got any ideas?</p>

<p>Cheers.</p>]]>
    </content>
    <published>2010-05-13T03:33:27Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:398</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-398" />
    <title>Comment from Dirk on 2010-06-28 - Just to settle my own curiosity please... I</title>
    <author>
        <name>Dirk</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Just to settle my own curiosity please...<br />
I used your image menu on a website and it worked 100% in Firefox, Opera and IE7. Than came IE8. It kept pushing my menu to the right & down. When one changed IE8 to compatable mode, it was fine again.<br />
After days of very little sleep & a lot of stress I changed to another menu alltogether.<br />
What was / is the bug between Image Menu & IE8??</p>]]>
    </content>
    <published>2010-06-28T13:37:43Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:403</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-403" />
    <title>Comment from luke on 2010-06-29 - Dear Scott Did you ever resolve your issue.</title>
    <author>
        <name>luke</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Dear Scott<br />
Did you ever resolve your issue. I'd like to do the same.<br />
Many Thanks<br />
luke</p>]]>
    </content>
    <published>2010-06-30T08:02:07Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:404</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-404" />
    <title>Comment from Google Account on 2010-06-30 - Has anyone had any success getting &quot;sticky&quot; to</title>
    <author>
        <name>Google Account</name>
        <uri>https://www.google.com/accounts/ManageAccount</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="https://www.google.com/accounts/ManageAccount">
        <![CDATA[<p>Has anyone had any success getting "sticky" to work in Internet Explorer?</p>

<p>I'm using Version 2, and have been able to get the items to work flawlessly in Safari and Firefox.  But for IE, I can't seem to get "sticky" to work.  I've tested in IE8 and IE 6 so far.</p>

<p>Thanks!</p>

<p>Andreah</p>]]>
    </content>
    <published>2010-06-30T15:58:52Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:428</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-428" />
    <title>Comment from lia on 2010-09-14 - Awesome script! Does anyone know if there is</title>
    <author>
        <name>lia</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Awesome script!  Does anyone know if there is a way to automate the hover effect?  That would make a very cool header nav.  THANK YOU!</p>]]>
    </content>
    <published>2010-09-14T22:54:40Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:430</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-430" />
    <title>Comment from Aleš on 2010-10-01 - Great menu :) I like it.. I use</title>
    <author>
        <name>Aleš</name>
        <uri>http://www.smartelektro.si</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.smartelektro.si">
        <![CDATA[<p>Great menu :) I like it.. </p>

<p>I use it in vertical mode and it works grat. To remove 100px gap between lines, you have to put  variable "max:"  on to your picture height (200px) and that is almost it :)..</p>

<p>$('.jimgMenu ul').kwicks({max: 150, duration: 300, isVertical : true, easing: 'easeOutQuad'});</p>]]>
    </content>
    <published>2010-10-01T10:23:01Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:433</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-433" />
    <title>Comment from gm on 2010-10-05 - Hello All, Is there a possibility of autoscroll?</title>
    <author>
        <name>gm</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hello All,<br />
Is there a possibility of autoscroll? Can we give a time limit to autoplay the slides?<br />
Thanks in advance... Pls advice</p>]]>
    </content>
    <published>2010-10-06T07:50:25Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:460</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-460" />
    <title>Comment from Google Account on 2010-11-17 - Thank you very much for the code. But</title>
    <author>
        <name>Google Account</name>
        <uri>https://www.google.com/accounts/ManageAccount</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="https://www.google.com/accounts/ManageAccount">
        <![CDATA[<p>Thank you very much for the code. But I do have problems with chrome in Linux. I really don't know how to explain what is happenning. It is just caothic. Has anybody else experimented this?<br />
</p>]]>
    </content>
    <published>2010-11-17T12:04:06Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:463</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-463" />
    <title>Comment from slager on 2010-11-25 - How to change opened tab, from the last</title>
    <author>
        <name>slager</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>How to change opened tab, from the last to the first?</p>

<p>(in demo landskapes)</p>

<p>thanks for help</p>]]>
    </content>
    <published>2010-11-25T15:45:30Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:464</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-464" />
    <title>Comment from rlnd on 2010-12-02 - Hi! I&apos;d like to use the sticky function</title>
    <author>
        <name>rlnd</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hi! I'd like to use the sticky function in version#1. How is it possible?<br />
Thank you in advance.</p>]]>
    </content>
    <published>2010-12-03T00:43:07Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:479</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-479" />
    <title>Comment from xNhAcK on 2011-01-17 - Hi, i want to erase 2 sections from</title>
    <author>
        <name>xNhAcK</name>
        <uri>http://www.hackprod.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.hackprod.com">
        <![CDATA[<p>Hi, i want to erase 2 sections from the original code but if i do that i make a mess with the code and the menu acts funny, can you help me please? </p>]]>
    </content>
    <published>2011-01-18T02:59:20Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:483</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-483" />
    <title>Comment from mikeg on 2011-02-03 - How can i have the active item stay</title>
    <author>
        <name>mikeg</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>How can i have the active item stay open after click and site load? Thought it'll will be possible with sticky but this would only be enable this for one specific tab.</p>

<p><br />
Thanks for your great work, it's quite simple to add and modify.</p>

<p><br />
Kind regards<br />
Mike</p>]]>
    </content>
    <published>2011-02-03T10:05:37Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:495</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-495" />
    <title>Comment from Google Account on 2011-02-10 - Is there any way to have the slide</title>
    <author>
        <name>Google Account</name>
        <uri>https://www.google.com/accounts/ManageAccount</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="https://www.google.com/accounts/ManageAccount">
        <![CDATA[<p>Is there any way to have the slide out images have multiple links within them, imagemap like (for a ghetto comparison)</p>]]>
    </content>
    <published>2011-02-11T00:43:02Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:498</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-498" />
    <title>Comment from vujč on 2011-02-12 - and sorry for my language and mistakes :)</title>
    <author>
        <name>vujč</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>and sorry for my language and mistakes :)</p>]]>
    </content>
    <published>2011-02-13T02:59:55Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:499</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-499" />
    <title>Comment from vujč on 2011-02-12 - hm</title>
    <author>
        <name>vujč</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>hm</p>]]>
    </content>
    <published>2011-02-13T04:01:53Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:500</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-500" />
    <title>Comment from vujč on 2011-02-12 - why doesnt work this image menu with/in wordpress?</title>
    <author>
        <name>vujč</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>why doesnt work this image menu with/in wordpress?</p>]]>
    </content>
    <published>2011-02-13T04:06:12Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:501</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-501" />
    <title>Comment from usugarbage on 2011-02-18 - I wanted a stick&apos;ied version of #1 as</title>
    <author>
        <name>usugarbage</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>I wanted a stick'ied version of #1 as well. This is what I've came up with. </p>

<p><br />
	$(document).ready(function ()<br />
	{<br />
		// find the elements to be eased and hook the hover event<br />
		$('.jimgMenu ul li a').hover(Hovered, Unhovered);</p>

<p>		// handle the click and bypass hover for the clicked element<br />
		$('.jimgMenu ul li a').click(function ()<br />
		{<br />
			// reset<br />
			$(this).parent("li").siblings().children("a.unbound").stop().animate({ width: "78px" }, { duration: 350, easing: "easeInOutQuad" })<br />
			$(this).parent("li").siblings().children("a.unbound").hover(Hovered, Unhovered);</p>

<p>			// turn off my leave<br />
			$(this).addClass("unbound").unbind('mouseenter').unbind('mouseleave')<br />
		});</p>

<p>	});</p>

<p>	function Hovered()<br />
	{<br />
		// if the element is currently being animated (to a easeOut)...<br />
		if ($(this).is(':animated'))<br />
		{<br />
			$(this).stop().animate({ width: "310px" }, { duration: 450, easing: "easeOutQuad" });<br />
		} else<br />
		{<br />
			// ease in quickly<br />
			$(this).stop().animate({ width: "310px" }, { duration: 400, easing: "easeOutQuad" });<br />
		}<br />
	}</p>

<p>	function Unhovered()<br />
	{<br />
		// on hovering out, ease the element out<br />
		if ($(this).is(':animated'))<br />
		{<br />
			$(this).stop().animate({ width: "78px" }, { duration: 400, easing: "easeInOutQuad" })<br />
		} else<br />
		{<br />
			// ease out slowly<br />
			$(this).stop('animated:').animate({ width: "78px" }, { duration: 450, easing: "easeInOutQuad" });<br />
		}<br />
	}<br />
</p>]]>
    </content>
    <published>2011-02-18T16:38:08Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:504</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-504" />
    <title>Comment from db4l on 2011-03-01 - i think this is a lovely tutorial /</title>
    <author>
        <name>db4l</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>i think this is a lovely tutorial / example. i am curious though how to include an image swap on a mouseover / hover on the 5 source images defined in the CSS and how that would mesh with the existing javascipt. </p>

<p>please forgive my ignorance...this is day two of forcing myself to learn web design. many thanks for any help.</p>]]>
    </content>
    <published>2011-03-01T22:06:34Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:510</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-510" />
    <title>Comment from Dylan Wagstaff on 2011-03-14 - Very slick sticky usugarbage. Thank you for sharing</title>
    <author>
        <name>Dylan Wagstaff</name>
        <uri>http://www.alohatechsupport.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.alohatechsupport.net">
        <![CDATA[<p>Very slick sticky usugarbage. Thank you for sharing</p>]]>
    </content>
    <published>2011-03-15T04:37:05Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:519</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-519" />
    <title>Comment from pmz on 2011-04-07 - Hi, great stuff but is there an option</title>
    <author>
        <name>pmz</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hi,<br />
great stuff but is there an option to change this to show for eg. first photograph on the left as big one and others which are on the right as thumbs and when You mouseover second image (thumbed) it will slide and cover the image on his left. So change the direction of sliding/hiding images? I hope You understood me.</p>]]>
    </content>
    <published>2011-04-07T10:22:59Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:521</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-521" />
    <title>Comment from Ritchie on 2011-04-07 - Thx4 this Awesome script! I want it vertical,</title>
    <author>
        <name>Ritchie</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Thx4 this Awesome script! <br />
I want it vertical, but what are the steps to do that?<br />
In firefox/firebug its working and putting it in the server not.<br />
Please help.</p>

<p>Ritchie</p>]]>
    </content>
    <published>2011-04-08T07:42:45Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:533</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-533" />
    <title>Comment from sho on 2011-06-01 - Thanks for making the sliding menu available. I</title>
    <author>
        <name>sho</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Thanks for making the sliding menu available. I believe I have the basic functions working. However, I am new to this and am unable to figure out how to place my own images into the frame work. Any assistance would be greatly appreciated. </p>

<p>Thanks</p>]]>
    </content>
    <published>2011-06-01T19:02:23Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:541</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-541" />
    <title>Comment from card on 2011-07-23 - Hi Pls can i get some help i</title>
    <author>
        <name>card</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hi <br />
Pls can i get some help i want to change the picture size i need the width: 1000px and height: 200px can someone help me<br />
</p>]]>
    </content>
    <published>2011-07-23T21:26:48Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:544</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-544" />
    <title>Comment from Robin on 2011-07-28 - Hi, I integrate version 2 of this jquery</title>
    <author>
        <name>Robin</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hi,</p>

<p>I integrate version 2 of this jquery on a wordpress template. The script by self works without any problem,  but I got trouble with other jquery scripts who I have installed over the plugins. </p>

<p>I try to embed the FancyBox (http://fancybox.net), but with the installed imagemenu it doesn't work. Same with some other query plugins. </p>

<p>If I load another template in WP without any code around imagemenu, the plugins work absolutely fine. </p>

<p>I spend now several hours  to fix it, but I found no solutions. </p>

<p>Anyone an Idea what I can do??? I also try to fix the problem with the noConflict part. No way :-(</p>]]>
    </content>
    <published>2011-07-28T22:55:13Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:545</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-545" />
    <title>Comment from Robin on 2011-07-28 - Hi, I integrate version 2 of this jquery</title>
    <author>
        <name>Robin</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hi,</p>

<p>I integrate version 2 of this jquery on a wordpress template. The script by self works without any problem,  but I got trouble with other jquery scripts who I have installed over the plugins. </p>

<p>I try to embed the FancyBox (http://fancybox.net), but with the installed imagemenu it doesn't work. Same with some other query plugins. </p>

<p>If I load another template in WP without any code around imagemenu, the plugins work absolutely fine. </p>

<p>I spend now several hours  to fix it, but I found no solutions. </p>

<p>Anyone an Idea what I can do??? I also try to fix the problem with the noConflict part. No way :-(</p>]]>
    </content>
    <published>2011-07-28T22:56:28Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:568</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-568" />
    <title>Comment from Jay on 2011-09-11 - Hi... Is it Possible that Sliding Works in</title>
    <author>
        <name>Jay</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Hi...<br />
Is it Possible that Sliding Works in Reverse Order..<br />
Means Floats in Left direction.</p>]]>
    </content>
    <published>2011-09-12T08:00:57Z</published>
  </entry>

  <entry>
    <id>tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101-comment:596</id>
    <thr:in-reply-to ref="tag:www.alohatechsupport.net,2009:/webdesignmaui//1.101" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html"/>
    <link rel="alternate" type="text/html" href="http://www.alohatechsupport.net/webdesignmaui/maui-web-site-design/create_image_menu_with_jquery.html#comment-596" />
    <title>Comment from Google Account on 2012-02-01 - I can not put on my website. He&apos;s</title>
    <author>
        <name>Google Account</name>
        <uri>https://www.google.com/accounts/ManageAccount</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="https://www.google.com/accounts/ManageAccount">
        <![CDATA[<p>I can not put on my website. He's making many mistakes, but I did and redid the procedure several times the way it was passed and does not work at all. Please, Help me!</p>]]>
    </content>
    <published>2012-02-01T15:37:10Z</published>
  </entry>

</feed>

