/********************************************
(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 FireFox, and then loads the FF-specific stylesheet
// Once FF correctly implements the ACID2 test, this will likely become unnecessary

var user = navigator.userAgent;
if( user )
{
	var index = user.indexOf( "Firefox" );
	var index2 = user.indexOf( "SeaMonkey" );
	var index3 = user.indexOf( "Firefox/3.0" );
	if( ( index != -1 || index2 != -1 ) && index3 == -1 )
	{
		document.write( '<link rel="stylesheet" type="text/css" href="/css/default/ff.css" />' );
		var g_is_ff = true;
	}
}

