(function($) {
	$.fn.hoverPanel = function() {
		$(this).hoverIntent(
			function() {
				var tip = $(this).next('.tooltip');
				var parent = tip.parent();
				$(this).attr('origZIndex', !isNaN($(this).css('z-index')) ? $(this).css('z-index') : 1);
				parent.css('z-index', 600);
				tip.show('fast');
			}, 
			function() {
				var tip = $(this).next('.tooltip');
				var parent = tip.parent();
				parent.css('z-index', $(this).attr('origZIndex'));
				tip.hide('slow');
			}
		);
		
		
	}
})(jQuery);
