// 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");
	if( index != -1 )
	{
		document.write( '<link rel="stylesheet" type="text/css" href="css/ff.css" />' );
	}
}