$(document).ready( function() {
	setBildHoehe();
});

function setBildHoehe() {
	txthoehe = $('.dd_safe_txt').height();
	txtbreite = $('.dd_safe_txt').width();
	
	$('.dd_safe_pix_details').height(txthoehe);
	$('.dd_safe_pix_details').width(txtbreite);
	
	$('.dd_safe_pix_details').show();
}
