$(document).ready(function(){

	 $('#slider').nivoSlider({
			effect: 'fade', // Specify sets like: 'fold,fade,sliceDown'
			animSpeed: 100, // Slide transition speed
			pauseTime: 5000, // How long each slide will show
			startSlide: 0, // Set starting Slide (0 index)
			directionNav: false, // Next & Prev navigation
			directionNavHide: false, // Only show on hover
			controlNav: true, // 1,2,3... navigation
			controlNavThumbs: true, // Use thumbnails for Control Nav
			controlNavThumbsFromRel: true, // Use image rel for thumbs			
			keyboardNav: true, // Use left & right arrows
			pauseOnHover: true, // Stop animation while hovering
			manualAdvance: false, // Force manual transitions
			captionOpacity: 1, // Universal caption opacity
			prevText: 'Prev', // Prev directionNav text
			nextText: 'Next', // Next directionNav text
		});
	
		$('#menu-main li.menu-item').hover(function(){
		$(this).children('.sub-menu').slideDown(0);
		
		
		}, function(){
		$(this).children('.sub-menu').slideUp(0);	
		
		})
  

});
