Hi Robert,
today is your lucky day.
Download the imageMenu from the site you linked to and you will get a folder called "imageMenu" in there you see a folder called "img". That's where you put your images. Once you put the images in that folder take the whole "imageMenu" folder and upload it to the root of your server/website.
Open iWeb and paste the following code in an HTML Snippet:
Code:
<div class="container">
<link rel="stylesheet" href="/imageMenu/css/style.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/mootools/1.2.4/mootools-yui-compressed.js"></script>
<script type="text/javascript" src="/imageMenu/lighter/Lighter.js"></script>
<script type="text/javascript" src="/imageMenu/lighter/Fuel.css.js"></script>
<script type="text/javascript" src="/imageMenu/lighter/Fuel.html.js"></script>
<script type="text/javascript" src="/imageMenu/lighter/Fuel.js.js"></script>
<script type="text/javascript">
window.addEvent('domready', function(){
$$('code').light({
altLines: 'hover',
path: '/imageMenu/lighter/',
mode: 'ol',
fuel: 'js',
indent: 4
});
});
</script>
<link rel="stylesheet" href="/imageMenu/css/imageMenu.css" type="text/css" media="screen" />
<script type="text/javascript" src="/imageMenu/js/Fx.Elements.js"></script>
<script type="text/javascript" src="/imageMenu/js/imageMenu.js"></script>
<script type="text/javascript">
window.addEvent('domready', function(){
var basicMenu = new ImageMenu($$('#imageMenuBasic a'),{
openWidth:310,
border:2
});
});
</script>
<div>
<div id="imageMenuBasic" class="imageMenu">
<ul>
<li class="landscapes"><a href="http://www.aaronbirchphotography.com" target="_top">Landscapes</a></li>
<li class="people"><a href="http://www.aaronbirchphotography.com" target="_top">People</a></li>
<li class="nature"><a href="http://www.aaronbirchphotography.com" target="_top">Nature</a></li>
<li class="urban"><a href="http://www.aaronbirchphotography.com" target="_top">Urban</a></li>
<li class="abstract"><a href="http://www.aaronbirchphotography.com" target="_top">Abstract</a></li>
</ul>
</div>
</div>
</div>
Where it says
<li class="people">
people is the name of the image so replace it with the name of your own image (just without the extension .jpg)
Where it says
http://www.aaronbirchphotography.com enter the URL to the page you want the image to link to
People is the title of the image which displays in the menu
You will probably have to enlarge the HTML Snippet you entered the code to for the menu to display completely
The menu will show up only once published to the web not in iWeb itself nor in local.
If you publish to MobileMe upload the imageMenu folder to the iDisk/Web/Sites/ folder. If you're using MobileMe's standard web.me.com/username/ address you have to add /YourUsername/ to the relative paths above hence
"/imageMenu/lighter/Lighter.js"
would get
"/YourUsername/imageMenu/lighter/Lighter.js"
Regards,
Cédric