/**** suckerfish menus ****/
startList = function() {
	if (document.all||document.getElementById) {
		navRoot = document.getElementById('navigation');
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=='LI') {
				node.onmouseover=function() {
					this.className+=' hover';
				}
				node.onmouseout=function() {
					this.className=this.className.replace('hover', '');
				}
			}
		}
	}
}
window.onload=startList;

/**** sifr replacements ****/
var giovanni = { src: '/includes/giovanni.swf' };
sIFR.delayCSS = true;
sIFR.activate(giovanni);

sIFR.replace({
	selector: 'h2',
	src: '/includes/giovanni.swf',
	wmode: 'transparent',
	tuneHeight: -2,
	offsetTop: -5,
	css: { '.sIFR-root': { 'color': '#edbe4e', 'font-size': '30px', 'font-style': 'italic' } },
	filters: { DropShadow: { knockout: false, distance: 2, color: '#aaaaaa', strength: 1 }	}
});
	
