var op=1.0;
var faktor=-0.05;
var countp=Math.ceil(Math.random()*13+1);
var us_schriftgroesse="1";
onload=function() {
	if (document.getElementById("hp1")) {
		window.setTimeout("blend()",5000);
		}
	if (document.cookie) {
		us_schriftgroesse=document.cookie;
		us_schriftgroesse=us_schriftgroesse.split(";");
		us_schriftgroesse=us_schriftgroesse[0];
		if (us_schriftgroesse.indexOf("=")==-1) {
			document.body.style.fontSize=us_schriftgroesse+'em';
			}
		}
}
function sizeiframe() {
    if (document.all) {
        document.getElementById("iframe").style.height = document.getElementById("iframe").document.body.scrollHeight + "px";
    }
}
function blend() {
	if (op>=0&&op<=1) {
		op=op+faktor;
		document.getElementById("hp1").style.opacity=op;
		document.getElementById("hp1").style.filter="Alpha(opacity="+(op*100)+")";
		window.setTimeout("blend()",100);
		}
	else {
		if (op<0) {
			op=0.0;
			faktor=0.05;
			document.getElementById("hp1").src="/images/homepage/illu_"+countp+"_scr.jpg";
			}
		else {
			op=1.0;
			faktor=-0.05;
			document.getElementById("hp2").src="/images/homepage/illu_"+countp+"_scr.jpg";
			}
		countp++;
		if (countp>14) {
			countp=1;
			}
		window.setTimeout("blend()",5000);
		}
	}
$(function() {
	$( "#example_2" ).accessNews({
        headline : "Business as Usual",
        speed : "slow",
		slideBy : 1
	    });
	});
$(function() {
	$( "#example_3" ).accessNews({
        headline : "Organisation",
        speed : "slow",
		slideBy : 1
	    });
	});
$(function() {
	$( "#example_4" ).accessNews({
        headline : "Themen",
        speed : "slow",
		slideBy : 1
	    });
	});