/*--------------------------------------------------------------------------*
 * 
 * Copyright (C) 2009 Brand Labs LLC
 * 
 *--------------------------------------------------------------------------*/

try {
	if (Cumberland.Volusion.Environment.isProductDetailPage(window.location.pathname)) {
		document.observe('dom:loaded', function(){
			var elements = null;
			
			try {
				//Remove links on swatches
				elements = $$('a[href^="javascript:change_option("] img[id^="optionimg_"]');
				if(elements != null) {
					elements.each(function(element){
						element.writeAttribute('id', '');
					});
				}
				
				//Change text for selecting colors
				elements = $$('#content_area table.colors_pricebox tr td font');
				if(elements != null) {
					elements.each(function(element){
						if(element != null) {
							if(element.innerHTML.toLowerCase() == 'click to view another <span>color</span>' 
							|| element.innerHTML.toLowerCase() == 'click to view another <span>color</span>') {
								element.update('Available Colors');
							}
						}
					});
				}
			}
			catch(e){/*Ignore*/}
		});
	}
}
catch(e){/*Ignore*/}