/* i_box1 */
window.setInterval('i_box1Timer()', 30000);

//index aktualniho zobrazeneho banneru 
var index_i_box1 = 0;

//pole zobrazovanych banneru
var arr_i_box1 = new Array;

arr_i_box1[0] = {url: "http://www.interquality.cz", path: "/data/flash/lss_125_125.swf", width: 125, height: 125, typ: "application/x-shockwave-flash", plocha: "i_box1"};


//nastaveni indexu na nahodnou hodnotu
if (arr_i_box1.length > 1) {
	index_i_box1 = Math.round(Math.random()*10);
	while (index_i_box1 > arr_i_box1.length - 1) {
		index_i_box1 = Math.round(Math.random()*10);
	}
}


function i_box1Timer() {
	//index je vetsi nez pocet prvku v poli ==> reset indexu
	if (index_i_box1 > arr_i_box1.length-1) {
		index_i_box1 = 0;
	}
	
	//pokud je v poli zadny nebo prave jeden banner, zadnou rotaci nedelam
	if (arr_i_box1.length < 2) {
		return;
	}
	
	//novy obsah (banner)
	i_box1_change(arr_i_box1[index_i_box1]);
	index_i_box1++;
}

function i_box1_change(ban) {
	if (ban.typ == 'application/x-shockwave-flash') {
		var newContent = "<embed height='"+ban.height+"' width='"+ban.width+"' src='"+ban.path+"?clickTAG="+ban.url+"' quality='high' " +
				"type='application/x-shockwave-flash' wmode='transparent' allowscriptaccess='always' />";
	} else {
		var newContent = "<a href='"+ban.url+"'><img src='"+ban.path+"' height='"+ban.height+"' width='"+ban.width+"' alt='banner' /></a>";
	}
	
	//vymena obsahu divu
	var plocha = document.getElementById(ban.plocha);
	if (plocha) {
		plocha.innerHTML = newContent;
	}	
}

//umisteni prvniho banneru (vychozi banner)
function i_box1_initBanners(){
	i_box1_change(arr_i_box1[index_i_box1]);
	index_i_box1++;
}

/* i_box2 */
window.setInterval('i_box2Timer()', 30000);

//index aktualniho zobrazeneho banneru 
var index_i_box2 = 0;

//pole zobrazovanych banneru
var arr_i_box2 = new Array;

arr_i_box2[0] = {url: "http://www.prace-jinak.cz/", path: "/data/flash/alternativa_125_125_clicktag_1.swf", width: 125, height: 125, typ: "application/x-shockwave-flash", plocha: "i_box2"};


//nastaveni indexu na nahodnou hodnotu
if (arr_i_box2.length > 1) {
	index_i_box2 = Math.round(Math.random()*10);
	while (index_i_box2 > arr_i_box2.length - 1) {
		index_i_box2 = Math.round(Math.random()*10);
	}
}


function i_box2Timer() {
	//index je vetsi nez pocet prvku v poli ==> reset indexu
	if (index_i_box2 > arr_i_box2.length-1) {
		index_i_box2 = 0;
	}
	
	//pokud je v poli zadny nebo prave jeden banner, zadnou rotaci nedelam
	if (arr_i_box2.length < 2) {
		return;
	}
	
	//novy obsah (banner)
	i_box2_change(arr_i_box2[index_i_box2]);
	index_i_box2++;
}

function i_box2_change(ban) {
	if (ban.typ == 'application/x-shockwave-flash') {
		var newContent = "<embed height='"+ban.height+"' width='"+ban.width+"' src='"+ban.path+"?clickTAG="+ban.url+"' quality='high' " +
				"type='application/x-shockwave-flash' wmode='transparent' allowscriptaccess='always' />";
	} else {
		var newContent = "<a href='"+ban.url+"'><img src='"+ban.path+"' height='"+ban.height+"' width='"+ban.width+"' alt='banner' /></a>";
	}
	
	//vymena obsahu divu
	var plocha = document.getElementById(ban.plocha);
	if (plocha) {
		plocha.innerHTML = newContent;
	}	
}

//umisteni prvniho banneru (vychozi banner)
function i_box2_initBanners(){
	i_box2_change(arr_i_box2[index_i_box2]);
	index_i_box2++;
}

/* i_box3 */
window.setInterval('i_box3Timer()', 30000);

//index aktualniho zobrazeneho banneru 
var index_i_box3 = 0;

//pole zobrazovanych banneru
var arr_i_box3 = new Array;

arr_i_box3[0] = {url: "", path: "/data/flash/banner-hr-online-ok_125x125.swf", width: 125, height: 125, typ: "application/x-shockwave-flash", plocha: "i_box3"};


//nastaveni indexu na nahodnou hodnotu
if (arr_i_box3.length > 1) {
	index_i_box3 = Math.round(Math.random()*10);
	while (index_i_box3 > arr_i_box3.length - 1) {
		index_i_box3 = Math.round(Math.random()*10);
	}
}


function i_box3Timer() {
	//index je vetsi nez pocet prvku v poli ==> reset indexu
	if (index_i_box3 > arr_i_box3.length-1) {
		index_i_box3 = 0;
	}
	
	//pokud je v poli zadny nebo prave jeden banner, zadnou rotaci nedelam
	if (arr_i_box3.length < 2) {
		return;
	}
	
	//novy obsah (banner)
	i_box3_change(arr_i_box3[index_i_box3]);
	index_i_box3++;
}

function i_box3_change(ban) {
	if (ban.typ == 'application/x-shockwave-flash') {
		var newContent = "<embed height='"+ban.height+"' width='"+ban.width+"' src='"+ban.path+"?clickTAG="+ban.url+"' quality='high' " +
				"type='application/x-shockwave-flash' wmode='transparent' allowscriptaccess='always' />";
	} else {
		var newContent = "<a href='"+ban.url+"'><img src='"+ban.path+"' height='"+ban.height+"' width='"+ban.width+"' alt='banner' /></a>";
	}
	
	//vymena obsahu divu
	var plocha = document.getElementById(ban.plocha);
	if (plocha) {
		plocha.innerHTML = newContent;
	}	
}

//umisteni prvniho banneru (vychozi banner)
function i_box3_initBanners(){
	i_box3_change(arr_i_box3[index_i_box3]);
	index_i_box3++;
}

/* i_header */
window.setInterval('i_headerTimer()', 30000);

//index aktualniho zobrazeneho banneru 
var index_i_header = 0;

//pole zobrazovanych banneru
var arr_i_header = new Array;

arr_i_header[0] = {url: "", path: "/data/flash/banner_konference_know_how_00-ok-ok.swf", width: 468, height: 60, typ: "application/x-shockwave-flash", plocha: "i_header"};


//nastaveni indexu na nahodnou hodnotu
if (arr_i_header.length > 1) {
	index_i_header = Math.round(Math.random()*10);
	while (index_i_header > arr_i_header.length - 1) {
		index_i_header = Math.round(Math.random()*10);
	}
}


function i_headerTimer() {
	//index je vetsi nez pocet prvku v poli ==> reset indexu
	if (index_i_header > arr_i_header.length-1) {
		index_i_header = 0;
	}
	
	//pokud je v poli zadny nebo prave jeden banner, zadnou rotaci nedelam
	if (arr_i_header.length < 2) {
		return;
	}
	
	//novy obsah (banner)
	i_header_change(arr_i_header[index_i_header]);
	index_i_header++;
}

function i_header_change(ban) {
	if (ban.typ == 'application/x-shockwave-flash') {
		var newContent = "<embed height='"+ban.height+"' width='"+ban.width+"' src='"+ban.path+"?clickTAG="+ban.url+"' quality='high' " +
				"type='application/x-shockwave-flash' wmode='transparent' allowscriptaccess='always' />";
	} else {
		var newContent = "<a href='"+ban.url+"'><img src='"+ban.path+"' height='"+ban.height+"' width='"+ban.width+"' alt='banner' /></a>";
	}
	
	//vymena obsahu divu
	var plocha = document.getElementById(ban.plocha);
	if (plocha) {
		plocha.innerHTML = newContent;
	}	
}

//umisteni prvniho banneru (vychozi banner)
function i_header_initBanners(){
	i_header_change(arr_i_header[index_i_header]);
	index_i_header++;
}

function initBanners(){if(typeof i_box1_initBanners == "function")i_box1_initBanners();if(typeof i_box2_initBanners == "function")i_box2_initBanners();if(typeof i_box3_initBanners == "function")i_box3_initBanners();if(typeof i_header_initBanners == "function")i_header_initBanners();}