	window.addEvent('domready', function(){	
		// set the ITEMS events
		$$("#colSX .content.box div.item").each(function(item){
			// jump fullsized
			if(!item.hasClass("fullsize")) {
				// save the link
				if(itemLink = item.getElement("a")) {
					itemLink.addClass('arrow');
					item.store('link',itemLink.href);
				}

				theLink = (window.computeItemLink) ? computeItemLink(item) : item.retrieve('link');
				item.store('link',theLink);
				
				if (theLink != null) {
					// add onclick event
					item.addClass('hand');
					item.addEvent("click",function(){
						location.href = this.retrieve('link');
					});
				}

				// if common link, add also the A tag
				if(theLink != null && item.getElement('a') == null){
					item.adopt(new Element('a',{'html':commonLinkLabel,'class':'abs arrow size1'}));
				}
				
			}
		});
	 }); //domready