Noonf,
так правильнее 3 строка
$(function() {
$(".flat_object").each(function(indx, el) {
var div = $(".switch", el), foto = $(".foto img",el);
$(el).on("mouseenter mouseleave", ".switch", function(event) {
var indx = div.removeClass("active").index(this);
foto.removeClass("active").eq(indx).addClass("active");
$(this).toggleClass("active", event.type == "mouseenter");
});
});
});