$("#car-scheme").ready(function(){textBlocks=$(".block-car-marker");textLines=$(".line-car-marker");info=$("#car-marker-info");markers=$(".car-marker");markers.click(function(){if($(this).hasClass("car-marker-showed")){$(this).removeClass("car-marker-showed");info.slideDown("slow");$("#line-"+$(this)[0].id).hide();$("#block-"+$(this)[0].id).fadeOut()}else{info.slideUp("slow");textBlocks.hide();textLines.hide();markers.removeClass("car-marker-showed");$(this).addClass("car-marker-showed");$("#line-"+
$(this)[0].id).show("slow");$("#block-"+$(this)[0].id).fadeIn("slow")}});$(".block-car-marker").hover(function(){$(this).addClass("hovered");$(this).children(".text-car-marker").show("slow")},function(){$(this).children(".text-car-marker").hide();$(this).removeClass("hovered")})});

