/*--------------------------------------------------------------------------*
 * 
 * Category Preview (Thames)
 * 
 * Version 1.0.2
 * 
 * Copyright (C) 2008 Brand Labs LLC
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  
 * 02110-1301  USA
 * 
 *--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------*
 * Category Preview Configuration
 *--------------------------------------------------------------------------*/
ThamesCategoryPreviewSettings.ENABLED = true;
/*--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------*
 * Demonstration Purposes
 *--------------------------------------------------------------------------*/
ThamesCategoryPreviewSettings.PHOTOS_PATH = 'http://www.redhatsandmore.com/v/vspfiles/photos'
ThamesCategoryPreviewSettings.ADD_TO_CART_URL_TEMPLATE = new Template('http://www.redhatsandmore.com/ShoppingCart.asp?ProductCode=#{productCode}');
ThamesCategoryPreviewSettings.GET_PHOTOS_URL_TEMPLATE = new Template('/v/thames/data.asp?productcode=#{productCode}');
Event.observe(window, 'load', function(){
	ThamesCategoryPreview.body = $$('body').first();	
	if (Prototype.Browser.IE) {
		var userAgent = navigator.userAgent;
		var matches = null;
	
		matches = userAgent.match(/MSIE (\d+\.\d+);/);
		if(matches != null && matches.length >= 2) {					
			ThamesCategoryPreview.ieAppVersion = new Number(matches[1]);
			
			new Element('img', {
				src: '/v/thames/images/preview.gif'
			});			
		}				
	}
	
	var initiator = new ThamesCategoryPreviewInitiator('AC2136', $('productPhoto'));
	$('productPhotoAnchor').onclick = function() {
		initiator.click(null);
		return false;
	};
});
/*--------------------------------------------------------------------------*/