try {
	document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}

// Quick_bar scroll Layer
function initMoving(target) {
    if (!target)
        return false;

    var obj = target;

	if (document.getElementById('pageTop'))
	{
	    obj.initTop = 0;
		obj.topLimit = 225;
	} else if(document.getElementById('quickMenu'))	{
	    obj.initTop = 0;
		obj.topLimit = 225;
	} else if(document.getElementById('quickShop'))	{
	    obj.initTop = 0;
		obj.topLimit = 225;
	}

    obj.bottomLimit = document.documentElement.scrollHeight;

    obj.style.position = "absolute";
    obj.top = obj.initTop;
    obj.left = obj.initLeft;
    obj.style.top = obj.top + "px";
//	obj.style.left = obj.left + "px";

    obj.getTop = function() {
        if (document.documentElement.scrollTop) {
            return document.documentElement.scrollTop;
        } else if (window.pageYOffset) {
            return window.pageYOffset;
        } else {
            return 0;
        }
    }
    obj.getHeight = function() {
        if (self.innerHeight) {
            return self.innerHeight;
        } else if(document.documentElement.clientHeight) {
            return document.documentElement.clientHeight;
        } else {
            return 0;
        }
    }
    
    obj.move = setInterval(function() {
    	try{
	        pos = obj.getTop() + obj.getHeight() / 2 - 300;
	
	        if (pos > obj.bottomLimit)
	            pos = obj.bottomLimit
	        if (pos < obj.topLimit)
	            pos = obj.topLimit
	
	        interval = obj.top - pos;
	        obj.top = obj.top - interval / 3;
	
	        obj.style.top = obj.top + "px";
		} catch (e1) {
		}
    }, 40)
}
