// Fernsehkritik-TV
<!--
function toggle(rowid, arrowid){ // v2.0
	with (document) if (getElementById && ((row=getElementById(rowid))!==null));
	with (document) if (getElementById && ((arrow=getElementById(arrowid))!==null));
	with (document) if (getElementById && ((arrow2=getElementById(arrowid + '2'))!==null));
	if (row.style.display == 'none') {
		row.style.display = '';
		arrow.style.display = 'none';
		arrow2.style.display = '';
	} else {
		row.style.display = 'none';
		arrow.style.display = '';
		arrow2.style.display = 'none';
	}

}
function ff() 
{
	nav = navigator.userAgent;
	sea = nav.search(/Firefox\/2.+/);
	if (sea != -1) {
		
		$("#frontimgs").css("position", "relative");
		$("#header").css("position", "relative");
		$("#frontimg1").css("position", "absolute");
		$("#frontimg2").css("position", "absolute");
		$("#frontimg3").css("position", "absolute");
		$("#frontimg1").css("margin-left", "330px");
		$("#frontimg2").css("margin-left", "170px");
		$("#frontimg3").css("margin-left", "10px");
		
		$("#search").css("position", "absolute");
		$("#search").css("left", "450px");
		
		$(".plus").css("background-position", "0 5px");
		$(".plus").html('&nbsp;');
		$(".plus2").css("background-position", "1px 5px");
		$(".plus2").html('&nbsp;&nbsp;');
		
		$(".jump").css("background-position", "0 2px");
		$(".jump").css("color", "#FFFFFF");
		$(".jump").html('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
		
		$(".jumps").css("background-position", "0 2px");
		$(".jumps").css("color", "#FFFFFF");
		$(".jumps").html('&nbsp;&nbsp;');
		
	}
}
window.onload = ff;
//-->