Index: wp-admin/js/postbox.dev.js
===================================================================
--- wp-admin/js/postbox.dev.js	(revision 20143)
+++ wp-admin/js/postbox.dev.js	(working copy)
@@ -72,12 +72,32 @@
 				forcePlaceholderSize: true,
 				helper: 'clone',
 				opacity: 0.65,
+				start:function(e,ui){ //unbinding the hoverIntent functions
+					$('#wpadminbar').find('li.menupop').hoverIntent({
+                                            over:function(e){
+                                                //do nothing
+                                                },
+                                            out:function(){
+                                                //do nothing
+                                                }
+                                            });
+				},
 				stop: function(e,ui) {
 					if ( $(this).find('#dashboard_browser_nag').is(':visible') && 'dashboard_browser_nag' != this.firstChild.id ) {
 						$(this).sortable('cancel');
 						return;
 					}
-
+                                    $('#wpadminbar').find('li.menupop').hoverIntent({ //Binding the hoverIntent functions back 
+                                        over: function(e){
+                                            $(this).addClass('hover');
+                                         },
+                                        out: function(e){
+                                            $(this).removeClass('hover');
+                                        },
+                                        timeout: 180,
+                                        sensitivity: 7,
+                                        interval: 100
+                                    });
 					postboxes.save_order(page);
 				},
 				receive: function(e,ui) {
