﻿window.addEvent('domready', function(){    
    
    $$('div.home div.callout').setStyle('cursor', 'pointer');
    $$('div.home div.acrylics').addEvent('click', function(){window.location = '/acrylic/'});
    $$('div.home div.apparel').addEvent('click', function(){window.location = '/apparel/'});
    $$('div.home div.engraved').addEvent('click', function(){window.location = '/engraved/'});
    
    for(i=0; i<$$('div.item-detail div.gallery img').length; i++) {
		function addEvt(t) {
			$$('div.item-detail div.gallery img#zoom' + [t]).addEvent('click', function(){
				$$('div.item-detail div.photos div.zoom').set('html', '<span class="enlarge">Click image to enlarge</span><a id="thumb1" onclick="return hs.expand(this, {captionId: \'caption1\'});" href="/images/' + gallery + '/zoom/' + [t] + '.jpg"><img src="/images/' + gallery + '/page/' + [t] + '.jpg" alt="" /></a>');
			});
		}	
		addEvt(i);		
	}
    
	$$('div.item-detail div.gallery img').setStyle('cursor', 'pointer');
	
});
