window.addEvent('domready', function() {
	if($('thumbs')==null) { }	
	else
	{
		var pozele = $$('#thumbs img');
		pozele.each(function(item, index){
							
							item.addEvent('mouseover', function(){
																var src = this.src;
																var mariSRC= src.replace(/tn\//gi, ''); 
																this.style.border="#000 1px solid";
																$('thebigpic').src=mariSRC;

																  
																  });
							item.addEvent('mouseout', function(){ 
															   this.style.border="#FFF 1px solid";
															   });
															   
							
							 });

	}

	
									 });
