$(document).ready(
	function(){
		$("div.navigation-wrap ul li").parent().hover(
			function(){
			
				$(this).children("div.subnav").addClass("hover");	
			},
			function(){
				$(this).children("div.subnav").removeClass("hover");	
			}
		);
	}
);
