// JavaScript Document
(function($) {
	$.fn.ucNav = function(){
		$(this).hover(
		function() {
			var idx = $(this).index();
			var offset = $(this).offset();
			var top = offset.top + 100;
			var left = offset.left;
			
			if(idx == 4) {
				left = left - 80;
				$('dl', $(this)).css({'top':top,"left":left, "width":184});
			} else {
				$('dl', $(this)).css({'top':top,"left":left});
			}
			
			$(this).addClass('hover');
		},
		function() {
			$(this).removeClass('hover');
		}
		);
	};
})(jQuery);


