$(document).ready(function() { $('.bild a').append(""); $('.bild a').css('display','block'); $('.bild').css('position','relative'); $('.bild span').css('background','url(/gfx/spaceball.gif)'); $('.bild span').css('display','block'); $('.bild span').css('position','absolute'); $('.bild span').css('top','0px'); $('.bild span').css('z-index','100'); $('.bild img').load(function() { var imageHeight = $(this).height(); var imageWidth = $(this).width(); $(this).parent('a').children("span").css('height',imageHeight+'px'); $(this).parent('a').children("span").css('width',imageWidth+'px'); }); // container .bild in Template .s2 ausblenden wenn kein Bild hinterlegt ist $(".s2 .bild:empty").each(function(i){ //$(this).addClass("empty-hide"); }); });