$(document).ready(function(){
	$('.navigation-sub').parent('li').mouseover(function(){
		$(this).find('.navigation-sub').show();
	});
	$('.navigation-sub').parent('li').mouseout(function(){
		$(this).find('.navigation-sub').hide();
	});
});
