detect = navigator.userAgent.toLowerCase();
if (checkIt('msie')) browser = "ie";
function checkIt(string) {
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}
