
function promoBox(promoImg, promoTitle, promoPerex, promoLink) {
	this.promoImg = promoImg;
	this.promoTitle = promoTitle;
	this.promoPerex = promoPerex;
	this.promoLink = promoLink;
}
var cityLight = {
	boxes_cz : new Array(
		new promoBox("/public_conver/d6/7/d9/125939_218109__405x227.jpg","O2 Neomezené volání","Volejte z mobilu a pevné zdarma, kamkoliv potřebujete","/sme/tarify_a_volani/125732-o2_neomezene_volani.html"),
		new promoBox("/public_conver/7e/23/d4/157040_284244__468x205.jpg","O2 Počítačové řešení","Přenechte starosti se svými počítači našim odborníkům","/sme/internet/88160-o2_pocitacove_reseni.html"),
		new promoBox("/public_conver/ce/55/fb/121293_178161__405x227.jpg","Opravdu rychlý a bezpečný internet","Připojte se rychlostí až 16 Mb/s a získejte zdarma zabezpečení svých dat","/sme/pevne-pripojeni/"),
		new promoBox("/public_conver/7d/c2/6a/122025_170102__405krat227.jpg","Internet Forte - připojení pro firmy","V ceně odesílání a stahování dat stejnou rychlostí až 8 Mb/s a nadstandardní služby","/sme/internet/88578-internet_forte.html"),
		new promoBox("/public_conver/69/50/f7/115351_157396__405x227.jpg","Volání do sítě O2 za 0&nbsp;Kč/min","S tarify O2 Business MAX nyní volejte až 24 měsíců do sítě O2 za 0 Kč/minutu","/sme/32786-abecedni_seznam/125768-o2_business_50procent_navic.html")
	),
	boxes_en : new Array(
		new promoBox("/public_conver/d6/7/d9/125939_218109__405x227.jpg","O2 Unlimited Calling","Free mobile and fixed-line calling","/sme/en/tarify_a_volani/125732-o2_neomezene_volani.html"),
		new promoBox("/public_conver/7e/23/d4/157040_284244__468x205.jpg","O2 Computer Solution","Let our specialists take care of your computer needs","/sme/en/internet/157062-o2_pocitacove_reseni_en.html"),
		new promoBox("/public_conver/ce/55/fb/121293_178161__405x227.jpg","Faster and cheaper internet","Connect with O2 Internet for the price of 2 Mb/s or accelerate to 16 Mb/s","/sme/en/fixed-connection/"),
		new promoBox("/public_conver/7d/c2/6a/122025_170102__405krat227.jpg","Internet Forte","Get an unlimited symmetric connection with a wide range of speeds","/sme/en/internet/88578-internet_forte.html"),
		new promoBox("/public_conver/69/50/f7/115351_157396__405x227.jpg","Call O2 numbers for 0&nbsp;CZK/min","Call O2 numbers for 0 CZK/min for up to 24 months with O2 Business MAX tariffs","/sme/en/32786-abecedni_seznam/125768-o2_business_50procent_navic.html")
	),
	initBoxes : function langInit() {
		this.boxes = (this.language == 'cz') ? this.boxes_cz : this.boxes_en;
	},
	moveLeft : function rotateLeft() {
		this.initBoxes();
		var tmp = this.boxes.shift();
		this.boxes.push(tmp);
		this.setHeading();
		this.setPerex();
		this.setButtons();
	},
	moveRight : function rotateRight() {
		this.initBoxes();
		var tmp = this.boxes.pop();
		this.boxes.unshift(tmp);
		this.setHeading();
		this.setPerex();
		this.setButtons();
	},
	setHeading : function heading() {
		$('altHeading').innerHTML = this.boxes[0].promoTitle;
	},
	setPerex : function perex() {
		$('altPerex').innerHTML = this.boxes[0].promoPerex;
	},
	setButtons : function buttons() {
		for (var i = 0; i < this.boxes.length; i++) {
			var imgName = 'altImage_' + i;
			var lnkName = 'altLink_' + i;
			$(imgName).src = this.boxes[i].promoImg;
			$(lnkName).href = this.boxes[i].promoLink; 
		}
	}
}

/*
<!-- monitoring
__ETN_.O.K.__
// monitoring -->*/

