/*************************************************************************** 
 Copyright (C) 2006 Next IT Corporation, Inc. Spokane, WA. All Rights Reserved. 
 This document is confidential work and intellectual property of Next IT 
 Corporation. Permission to copy, distribute or use any portion of this file 
 is prohibited without the express written consent of Next IT Corporation.

*****************************************************************************/

//.ctor
function Changer()
{		
	this.mySheet = "includes/styles/bot_gu_styles.css";						
};

//--
Changer.prototype.URLTest = function(url)
{	 
	var temp = document.getElementById( 'spikey' );
	if (this.lastURL != url){
		if (url.toLowerCase().indexOf("gonzaga.edu") > 0)
		{
			temp.className = "tablebody";			
		}
		else if ( url.toLowerCase().indexOf("gozags.collegesports.com") > 0 ||
				  url.toLowerCase().indexOf("gozags.cstv.com") > 0 )
		{
			temp.className = "tablebodyb";
		}
		else if (url.toLowerCase().indexOf("supportgonzaga.com") > 0)
		{
			temp.className = "tablebodya";
		}		
		this.lastURL = url;		
	}	
};

//-
Changer.prototype.ChangeSS = function(mySheet)
{
	var el = document.getElementById( 'default_ss' );
	el.href = mySheet;			
};
