window.addEvent('domready', function(){

	$$('.focus_link').each(function(el){
		el.addEvent('mouseover', function(){
			//alert(this.get('img'));
			
			$('img_focus_on').src = this.get('img');
			})
		});
	});
