/**
 * gdClient.js v2.0
 *
 * @author		: gd incorporated.
 * @version	: 2.0.02
 */
function gdClient(){
	this.isWin = (navigator.appVersion.indexOf("Win", 0) != -1);
	this.isMac = (navigator.userAgent.indexOf("Mac",0) != -1);
	this.isOSX = (navigator.userAgent.indexOf("Mac OS X",0) != -1);
	this.isOS9 = (this.isMac && ! this.isOSX) ? true : false;
	this.isMSIE = (navigator.userAgent.indexOf("MSIE", 0) != -1);
	this.isNN = (navigator.appName.indexOf("Netscape",0) != -1);
	this.isMozilla = (navigator.userAgent.indexOf("Mozilla", 0) != -1);
	this.isOpera = (navigator.userAgent.indexOf("Opera", 0) != -1);
	this.isSafari = (navigator.userAgent.indexOf("Safari", 0) != -1);
	this.isCompatMode = (document.compatMode == "CSS1Compat");
	this.isMSIE6 = (navigator.userAgent.indexOf("MSIE 6.", 0) != -1);
	this.isWii = (navigator.userAgent.indexOf("Nintendo Wii", 0) != -1);
}
gdClient.prototype = {
	
};