$(window).load(function() {
	$('.slider').nivoSlider({
		pauseTime: 6000,
		controlNav:false,
		prevText: '',
		nextText: ''
	});	
});

$(document).ready(function(){  
	$(".do-sub-menu").click(function() { 
		
		$(this).parent().find("ul.header-sub-menu").slideDown('fast').show(); //Drop down the subnav on click  
  
		$(this).parent().hover(function() {  
		}, function(){  
			$(this).parent().find("ul.header-sub-menu").slideUp('slow');
	});  
  
  })
});  
