function CycleTeasers() {
 $('#teasers').cycle({
    fx:     'fade',
    speed:   1600,
    timeout: 8000,
    sync: 1
 });
}

function getADEImages() {
	$('img.ade').each(function(i,e) {
		$aid = $(this).attr('id');
		$aid = $aid.substr(2);
		$(this).attr('src', 'http://www.anwalt.de/upload/'+$aid+".jpg");
	});
}

function awakeLibs() {
  $('div.rechtstipps p.snip').each(function(index) {
		aid = $(this).attr('id');
		aid = aid.substr(3);
		txt = $(this).children('span.t').text();
		$(this).children('span.t').remove();
		pfix = aid % 10;
		$(this).append("<a class='t' href='/artikel/sec"+pfix+"/"+aid+".html' title=''>"+txt+"</a>");
		//alert(txt);
	});
}

function asoBootstrap() {
  awakeLibs();
}


