// t2CatPage.js by Jon Grimes <jon.grimes@gmail.com> 2/25/2009

/*
	Contains javascript used to render the t2 category pages.
*/


var t2 = '';

/*
	
*/
function initT2Cat() {
	
			//Set the css class for the splash image container.
			//The class name should be the category name with spaces removed and the word Splash added to the end 
			// (Indoor Living = IndoorLivingSplash)
			if(wba_category.name != '') {
					t2 = wba_category.name;
					t2 = t2.replace(/\W/g, '');
					document.getElementById('t2Splash').className = t2 + 'Splash';
			}
}
