function dropdownNav() {
	id = $('#dropNav li');

	id.bind({
		mouseover: function() {
			$(this).find('ul').show();
		},
		mouseout: function() {
			$(this).find('ul').hide();
		}
	});
}
