//asdasd
function changeImage(bild_id, bildurl, width, bildurl_gross, width_gross){
  akt_bildurl = $("#image" + bild_id).attr("src");
  akt_bildspan = $("#imagespan" + bild_id);

  if(akt_bildurl == bildurl){
    $("#image" + bild_id).attr("src", bildurl_gross);
    $("#imagespan" + bild_id).css("clear", "both");
    $("#imagespan" + bild_id).css("width", width_gross + "px");
    $("#image" + bild_id).css("width", width_gross + "px");
    $("#lupe" + bild_id).attr("src", "/codebase/img/lupe_minus.gif");
  }else{
    $("#image" + bild_id).attr("src", bildurl);
    $("#imagespan" + bild_id).css("width", width + "px");
    $("#image" + bild_id).css("width", width + "px");
    $("#lupe" + bild_id).attr("src", "/codebase/img/lupe_plus.gif");
  }
}

