function homeImage(el, id) {
	var container = $('newsImage');
	container.set('morph',{duration:300});
	$(el).imageID = id;
	el.addEvent('mouseenter', function() {
		container.setOpacity(0.001);
		container.style.backgroundImage = 'url(../downloads/gallery/'+this.imageID+'_home.jpg)';
		container.morph({opacity:1});
	});
	el.addEvent('mouseleave', function() {
		container.morph({opacity:0.001});
	});
	el.fireEvent('mouseenter');
	el.onmouseover = function(){};
}
