$(window).addEvent('domready', function() {
	if($$('#branding .mod_customnav').length > 0) {
		$$('#branding .mod_customnav').addEvent('mouseover', function() {
			this.addClass('hover');
		});
		$$('#branding .mod_customnav').addEvent('mouseleave', function() {
			this.removeClass('hover');
		});
	}
	
	if($$('.mod_navigation li').length > 0) {
		$$('.mod_navigation li').addEvent('mouseover', function() {
			this.addClass('hover');
		});
		$$('.mod_navigation li').addEvent('mouseleave', function() {
			this.removeClass('hover');
		});
	}
});
