$(document).ready(function(){ $("#div_struct").load("img/str.svg",function(){ $("#item-nach").mouseover(function(){ // $(this).find("circle").attr("fill","rgb(255,0,0)"); $(this).find("ellipse").attr("ry",48); $(this).find("ellipse").attr("rx",48); $(this).find("text").attr("font-size",14); }); $("#item-nach").mouseout(function(){ $(this).find("ellipse").attr("ry",32); $(this).find("ellipse").attr("rx",32); $(this).find("text").attr("font-size",10); // $(this).find("circle").attr("fill","rgb(114,159,207)"); }); }); $(".clSmoothScroll1").click(function (event) { event.preventDefault(); var id = $(this).attr('href'), top = $(id).offset().top-50; $('body,html').animate({scrollTop: top}, 500); }); });