﻿window.addEvent('domready', function(){    
    for(i=0; i<$$('div.main div.interior div.copy div.item-detail div.gallery img').length; i++) {
		function addEvt(t) {
			$$('div.main div.interior div.copy div.item-detail div.gallery img#zoom' + [t]).addEvent('click', function(){
				$$('div.main div.interior div.copy div.item-detail div.photos div.zoom').setHTML('<span class=\"enlarge\">Click image to enlarge</span><a id="thumb1" onclick="return hs.expand(this, {captionId: \'caption1\'});" href="/images/items/' + gallery + '/zoom/' + [t] + '.jpg"><img src="/images/items/' + gallery + '/page/' + [t] + '.jpg" alt="" /></a>');
			});
		}	
		addEvt(i);		
	}
	
    $$('div.callouts div').setStyle('cursor', 'pointer');
    $$('div.callouts div.signs').addEvent('click', function(){window.location = "/signs/"});
    $$('div.callouts div.plaques').addEvent('click', function(){window.location = "/plaques/"});
    $$('div.callouts div.clothing').addEvent('click', function(){window.location = "/clothing/"});
    
	$$('div.main div.interior div.copy div.item-detail div.gallery img').setStyle('cursor', 'pointer');
	
	$$('div.main div.interior div.copy div.item-detail div.zoom').addEvent('domready', function(){
    	var zoomDiv = new Element('span').setProperty('class', 'enlarge').setHTML('Click image to enlarge').injectBefore('thumb1');
	});
	
	$$('div.main div.interior div.copy table.shirt-designs img').setStyle('cursor', 'pointer');
});