/*
window.addEvent('domready', function() {
	alert("hallo");
	var currURL = location.href;
	alert(currURL);
	$${'.wbHorizontal'}.each(function (el) {
	var elURL = el.getParameter('href');
	alert(elURL);
	if(currURL == elURL) {
		alert("sind gleich");
	}
	
	});
});
*/