
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/42/e3/d7/165111_287084_imageset_akvarko.jpg","Přeskočte na tarif s&nbsp;30% slevou","Objednejte si mobilní tarif on-line a užívejte si 2 roky neomezené volání nebo SMS","/soho/specialni_nabidky/148309-pausal_30procent.html"),
		new promoBox("/public_conver/67/18/75/163617_282885_mobilni_internet_za_400.jpg","Internet na cesty za 400 Kč","K tarifům O2 Neon a O2 Simple získáte O2 Mobilní Internet za 400 Kč","/soho/88122-mobilni/o2-mobilni-internet.html"),
		new promoBox("/public_conver/84/8c/18/139398_250007_O2_Mojito_378x195.jpg","O2 ZERO","Dopřejte si jednoduchost a svobodu jedinečného tarifu – bez paušálu, bez závazku","/soho/84535-nabidka_tarifu/139808-o2_zero.html"),
		new promoBox("/public_conver/8c/a4/24/165090_287070_xmass_o2_internet_standalone.jpg","Rychlý a spolehlivý O2 Internet","Surfujte jen za 600 Kč měsíčně. Objednávejte on-line a získáte WiFi modem za 1 Kč.","/soho/internet/o2-internet.html"),
		new promoBox("/public_conver/2f/ff/8c/163639_282916_samsung_corby.jpg","Samsung Corby s&nbsp;druhým mobilem za 1&nbsp;Kč","Pořiďte si Samsung Corby s tarifem O2 NEON a získejte druhý Samsung za 1 Kč","/soho/specialni_nabidky/162681-samsung_corby.html")
	),
	boxes_en : new Array(
		new promoBox("/public_conver/42/e3/d7/165111_287084_imageset_akvarko.jpg","Switch to a tariff and get a 30% discount ","Order a mobile tariff online and enjoy unlimited calling or SMS messages for two years","/soho/en/specialni_nabidky/148309-pausal_30procent.html"),
		new promoBox("/public_conver/7e/26/58/163628_282905_mobilni_internet_za_400_en.jpg","Internet on the road for CZK 400","Get O2 Mobile Internet for CZK 400 with O2 NEON and O2 Simple tariffs","/soho/en/88122-mobilni/o2-mobile-internet.html"),
		new promoBox("/public_conver/84/8c/18/139398_250007_O2_Mojito_378x195.jpg","O2 ZERO","Freedom and simplicity – an exceptional tariff with no monthly fee and no commitments","/soho/en/84535-nabidka_tarifu/139808-o2_zero.html"),
		new promoBox("/public_conver/e9/15/9b/165092_287167_xmass_o2_internet_standalone_en.jpg","Fast and reliable O2 Internet","Surf for 600 CZK/month. Order online and get a WiFi modem for CZK 1.","/soho/en/internet/o2-internet.html"),
		new promoBox("/public_conver/2f/ff/8c/163639_282916_samsung_corby.jpg","Buy a Samsung Corby, get a 2nd mobile for CZK 1","Buy the Samsung Corby with an O2 NEON tariff and get a second Samsung for CZK 1","/soho/en/specialni_nabidky/162681-samsung_corby.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 -->*/

