var ProductsAccordion = Class.create();
ProductsAccordion.prototype = {

container : $( 'productsAccordionContainer' ),

initialize : function() {

	// Hide the accordion until it gets built.
	this.container.style.visibility = 'hidden';

}, // End initialize().

build : function() {

	var options = {};
	var thisObj = this;

	// Do not animate for older browsers.
	if ( window.XMLHttpRequest == null ) {
		options.resizeSpeed = 11;
	} // End if.

	// Initialize the accordion.
	var acc = new accordion( 'productsAccordion', options );
	var accListener = {
		onActivate: function( tab ) {
			thisObj.onActivate( tab );
		}
	}
	acc.listener = accListener;

	// Open the starting tab.
	var toggleIndex = -1;
	var url = window.location.href;
	var page = url.toQueryParams().s;
/*
	if ( page == 'product-finder' ) {
		toggleIndex = 0;
	} else if ( page == 'our-brands' ) {
		toggleIndex = 1;
	} else if ( page == 'interior-paint-calculator' ) {
		toggleIndex = 2;
	} else if ( page == 'exterior-paint-calculator' ) {
		toggleIndex = 3;
	} else if ( page == 'sheen-guide' ) {
		toggleIndex = 4;
	} else if ( page == 'msds' ) {
		toggleIndex = 5;
	} else if ( page == 'voc-information' ) {
		toggleIndex = 6;
	} // End if.
*/

	// REMOVE THIS AND UNCOMMENT THE ABOVE WHEN WE RE-ADD THE PRODUCT FINDER AND BRAND TABS.
	if ( page == 'glidden-quality' ) {
		toggleIndex = 0;
	} else if ( page == 'glidden-paints' ) {
		toggleIndex = 1;
	} else if ( page == 'interior-paint-calculator' ) {
		toggleIndex = 2;
	} else if ( page == 'exterior-paint-calculator' ) {
		toggleIndex = 3;
	} else if ( page == 'sheen-guide' ) {
		toggleIndex = 4;
	} else if ( page == 'msds' ) {
		toggleIndex = 5;
	} else if ( page == 'voc-information' ) {
		toggleIndex = 6;
	} // End if.

	if ( toggleIndex >= 0 ) {
		acc.activate( $$( '#productsAccordion .accordion_toggle' )[ toggleIndex ] );
	} // End if.

	// Show the accordion.
	this.container.style.visibility = 'visible';

}, // End build().

// Listens for accordion expanding events.
//
onActivate : function( tab ) {

	// Load the Floodlight tag for the Interior Calculator.
	if ( tab.id == 'prodAcc_intPaintCalc' ) {
		new FloodlightTag( 'http://fls.doubleclick.net/activityi;src=2344780;type=landi542;cat=inter417;u1=Viewed;ord=' );

	// Load the Floodlight tag for the Exterior Calculator.
	} else if ( tab.id == 'prodAcc_extPaintCalc' ) {
		new FloodlightTag( 'http://fls.doubleclick.net/activityi;src=2344780;type=landi542;cat=exter358;u1=Viewed;ord=' );

	} // End if.

} // End onActivate().

} // End class ProductsAccordion.

var productsAccordion = new ProductsAccordion();
