$(document).ready( function() {
	setBildHoehe();
});

function setBildHoehe() {
	txthoehe = $('.dd_txt_safe').height();
	//txtbreite = $('.dd_txt_safe').width();
	
	txthoehe += 10;
	
	$('.dd_safe_pix').height(txthoehe);
	//$('.dd_safe_pix').width(txtbreite);
	
	$('.dd_safe_pix').show();
}
