/* Agency.com 2005 */

// This script reads the label of the browser. This label is used in the css.js.

var css_conf = [
	{ re: /Safari/, label: "safari"},
	{ re: /Mac_PowerPC.*Opera\ 7\./, label: "opera"},
	{ re: /Opera/, label: "opera"},
	{ re: /Mac_PowerPC/, label: "msie_mac"},
	{ re: /MSIE\ (5\.0|4\.)/, label: "msie50-"},
	{ re: /MSIE\ 5\.5/, label: "msie55"},
	{ re: /Gecko/, label: "gecko"},
	{ re: /./, label: "default"}
];

