$(document).ready(function() {
  	$('#nav li').hover(function() {
		$(this).children('ul.sub').css('display', 'block');
		$(this).addClass('hover');
	}, function() {
		$(this).children('ul.sub').css('display', 'none');
		$(this).removeClass('hover');
	});
});