/**
AUTHOR	:	GUGULETHU NTOMBELA
DATE	:	20 - 09 - 04
SCRIPT	:	IMAGE & STYLESHEET PATHS, AND BROWSER AND PLATFORM CHECK
WEBSITE	:	Africanwildlifephotos.co.za
*****************Copyright reserved:africanwildlifephotos.co.za******************
**/

/**	Images path	**/
var ImagePath = '_images/';

/**	Style sheet path **/
var StyleSheetPath = '_styles/';

/**	check browser and platform	**/
if ((navigator.userAgent.indexOf("Mac") != -1)){
		document.write("<link rel='stylesheet' href='" + StyleSheetPath + "rondnet_mac.css'>") 
	}
if (navigator.userAgent.indexOf('Win') != -1){
		if (navigator.appName.indexOf('Netscape') != -1) {
			document.write("<link rel='stylesheet' href='" + StyleSheetPath + "wildlife_nav.css'>")
			}
			else {document.write("<link rel='stylesheet' href='" + StyleSheetPath + "wildlife_ie.css'>")
			}
		}
else
{
	document.write("<link rel='stylesheet' href='" + StyleSheetPath + "wildlife_ie.css'>")
}

//end of Monitor.....