
/**
 * simple namespace wrapper for helpers and othersides
 */
 
var sx = {
    getClientSize : function()
    {
        if(window.innerHeight || window.innerWidth){
            return {w:window.innerWidth, h:window.innerHeight}
        }
        return {
            w:document.documentElement.clientWidth,
            h:document.documentElement.clientHeight
        }
    }
};
