/**
 * Adds some classes for RP08 flyout menus
 * in the right rail.
 */
jQuery(function(){
	jQuery('.rp08-flyout-button').hover(
		function(){
			if(this.hoverTimeout)
				clearTimeout(this.hoverTimeout);
			jQuery(this).addClass("rp08-flyout-button-hover");
		},
		function(){
			var me = this;
			this.hoverTimeout = setTimeout(function(){
				jQuery(me).removeClass("rp08-flyout-button-hover");
			}, 600);
		}
	);
});

