window.addEvent('domready', function() {
/*---------------------------------------------------------------------------------*/
		
		function addBorder(k){
			var thumbs = $('archive_thumb').getElementsByTagName("li");
			for(var i=0; i<thumbs.length; i++){
				if(k==i){
					$(thumbs[i]).addClass('show_putterImg');
				}else{
					$(thumbs[i]).removeClass('show_putterImg');
				}
			}
		}
		
		var thumbs = $('archive_thumb').getElementsByTagName("a");
		
		for(var i=0; i<thumbs.length; i++){
			$(thumbs[i]).eye = i+1;//because of the "click to view" li
			$(thumbs[i]).addEvent('click', function(e){
				e = new Event(e);
				e.stop();
				addBorder(this.eye);
				$('archive_mainImg').setProperty('src', this.getProperty('href'));
				
			});
		}
		
		
/*---------------------------------------------------------------------------------*/
});