// JavaScript Document
function _getWindowWidth() {
	var windowWidth = window.innerWidth  || document.documentElement.clientWidth  || document.body.clientWidth;
	return 	windowWidth;
}
