
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/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č","/osobni/specialni_nabidky/162681-samsung_corby.html"),
		new promoBox("/public_conver/88/b7/7/163793_284233__468x205.jpg","Bonus 3 x 50 % na dobití","Pořiďte si novou O2 kartu a získejte 3 x 50% bonus na dobití svého kreditu","/osobni/specialni_nabidky/162865-bonus_3x50.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","/osobni/mobilni-tarify/139808-o2_zero.html"),
		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","/osobni/specialni_nabidky/148309-pausal_30procent.html"),
		new promoBox("/public_conver/18/71/89/165084_287067_vanoce_adsl_mbb_kombinace.jpg","Rychlý internet na doma, mobilní na cesty","Ať už si vyberete internet na doma nebo na cesty, získáte ho jen za 600 Kč","/osobni/specialni_nabidky/164971-jaky_internet.html")
	),
	boxes_en : new Array(
		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","/osobni/en/specialni_nabidky/162681-samsung_corby.html"),
		new promoBox("/public_conver/88/b7/7/163793_284233__468x205.jpg","3 x 50% recharging bonus","Buy a new O2 karta and get a 50% bonus three times for recharging your credit","/osobni/en/specialni_nabidky/162865-bonus_3x50.html"),
		new promoBox("/public_conver/84/8c/18/139398_250007_O2_Mojito_378x195.jpg","O2 ZERO","A new mobile tariff with no monthly fee and no commitment","/osobni/en/mobile-tariffs/139808-o2_zero.html"),
		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","/osobni/en/specialni_nabidky/148309-pausal_30procent.html"),
		new promoBox("/public_conver/2f/31/99/165140_287625_vanoce_adsl_mbb_kombinace_en.jpg","Internet at home and on the road","Choose a fast internet connection at home or on the road for just 600 CZK/month. ","/osobni/en/specialni_nabidky/164971-jaky_internet.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 -->*/

