// ==UserScript==
// @name           Nico multi-pop-drag-resize part
// @namespace      http://andre-garden.com
// @description    Noco muiti-pop-drag-resize support. scrollY moves when URL is ..#flvplayer_container. 
// @include        http://www.nicovideo.jp/watch*#flvplayer_container
// @include        http://www.nicovideo.jp/watch*#flvplayer_container_m
// ==/UserScript==

(function(){
    var ww = (unsafeWindow || window);
 	ww.addEventListener("load", function(){
        if (document.location.href.indexOf("#flvplayer_container_m") > 0) {
	        ww.addEventListener("scroll", function(){
		        GM_setValue("video_frame_data_scrollY", ww.scrollY);
            },false);
            
			var y = GM_getValue("video_frame_data_scrollY");
            if (typeof(y) != 'undefined') {
                ww.scroll(0, y);
	        }

	    } else {    
            ww.scroll(0, ww.scrollY + 20);
        }
	},false);
})();

