$(function() {
	$('div[prnt]').hover(
		function() {
			var subMenu = $(this).find('.nav:first');
			$(this).parents('div[prnt]').css('background-color', '#FFD2A7');
			if (subMenu.css('position') != 'absolute') {
				var _left = $(this).position().left + $(this).width() - ($.browser.msie?2:0);
				var _top = $(this).position().top - ($.browser.msie?2:0);
				subMenu.css({'position':'absolute', 'left':_left, 'top':_top});
			}
			subMenu.show();
		},
		function() {
			$(this).css('background-color', '#FFFFFF');
			var subMenu = $(this).find('.nav:first');
			subMenu.hide();
		}
	);
});
