/*sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);*/

// initialise plugins
jQuery(function(){
	jQuery('ul#nav').superfish({
		delay:0, animation: {height:'show'}, speed: 'normal', autoArrows: true, dropShadows: false, disableHI: true
	}).find('ul').bgIframe({opacity:false});
});

$().ready(function() {
	$('#kwicks').kwicks({
		min : 20,
		spacing : 5,
		duration: 1000,
		easing: 'easeOutQuint'
	});
});