$(document).ready(function() {

	$('.headerBlock .nav .lv1 li').hover(function() {
		$(this).children('.lv2outer').css({
			display: 'block'
		});
	}, function() {
		$(this).children('.lv2outer').css({
			display: 'none'
		});
	});

});
