/********************************************
(c) 2005-present, uTime Games
Despite the fact that you can see this, 
you may NOT use or copy this code for any reason.
If you'd like to use this code, please contact:
	Geoffrey Benson at
	sales@utimegames.com

Licensing terms are generally reasonable -
ranging from free to cheap - but you MUST
ask and obtain permission first.

Thank you for not being a jerk.
  --The Management
********************************************/

// Detects if we're running Safari

var user = navigator.appVersion;
if( user )
{
	var index = user.indexOf( "Safari" );
	if( index != -1 )
	{
		g_is_safari = true;
	}
}
