// (c) 2011 aween.nl
$(document).ready(function() {$("nav ul > li > ul").removeClass("fallback");});
$(document).ready(function() { $(".topNav li").hoverIntent({sensitivity: 7,interval: 100,over: showNav,timeout: 2000,out: hideNav});	});
function showNav() {$('a', this).addClass("hovering"); $('ul', this).slideDown(200);};
function hideNav() {$('a', this).removeClass("hovering"); $('ul', this).slideUp(100).hide(200);};
$(window).load(function() {$('#slider').nivoSlider({captionOpacity:1});});

