
	$(document).ready( function(){
	
		$('#dropnavigation li').hover(
				function(){ $( this ).find('.sub-nav').show(); $(this).addClass('hover'); },
				function(){ $( this ).find('.sub-nav').hide(); $(this).removeClass('hover'); }
			)
	
	})
	
	

