document.getElementById('menu_ul').onclick = (function (o, a, i, c) { 

	return function (e) {
		e = e || window.event;
		var tgt = e.target || e.srcElement;
		if (tgt.nodeName.toLowerCase() != 'a') return true;
		var href = (tgt.href.match(/([a-z-]+)\.html/)||[])[1];

		if (o[href]) {
			if (c) c.className = '';
			a.src = o[href][0];
			i.href = o[href][1]
			tgt.className = 'dark_menu';
			c = tgt;
			return false;
		}

	}
})({
	
	'monitoruj-konkurencje': ['/img/monitoruj.jpg', "/produkty.html"],
	'optymalizuj-koszty': ['/img/optymalizuj.jpg', '/produkty.html'],
	'zwiekszaj-efektywnosc': ['/img/zwiekszaj.jpg', '/produkty.html'],
	'reaguj-szybko': ['/img/reaguj.jpg', '/produkty.html']
},
	document.getElementById('slide_banner'),
	document.getElementById('switched_anchor')
);


