document.observe('dom:loaded', function(){
	$$('.photo').each(function(element){
		element.onmouseover = function(){
			element.className = "photo photo_act";
			return false;
		};
		element.onmouseout = function(){
			element.className = "photo";
			return false;
		};
	});
});