$(document).ready(function() {
	$("#navbar ul#nav li").hover(
			function() {
				$('ul', this).show();
				$(this).addClass('over');
				//$(this).children('ul').css('display', 'block');
			},
			function() {
				$('ul', this).hide();
				$(this).removeClass('over');
				//$(this).children('ul').css('display', 'none');
			}
	)	
});
