		$(document).ready(function() {
			$('#slider').nivoSlider({
				controlNav: false,
				keyboardNav: false,
				directionNav: false,
				effect: 'fade',
				pauseTime: 5000
			});
			$('.menuItem:not(.current)').hover(function() {
					$(this).css('color', '#b4df26').css('textDecoration', 'underline');
				}, function() {
					$(this).css('color', '#ffffff').css('textDecoration', 'none');
				}
			);
			$('.submenuItem:not(.current)').hover(function() {
					$(this).css('color', '#b4df26').css('textDecoration', 'underline');
				}, function() {
					$(this).css('color', '#000000').css('textDecoration', 'none');
				}
			);
		});

