var setPageElements = {


	blurLinks: function() {
		$A(document.getElementsByTagName('a')).each(function(s) {
			s.onfocus = function () {
				this.blur();
			};
		});

	},

	teaserBoxDimensions: function() {
		teaserBoxen = $A(document.getElementsByClassName('teaserBox'));
		if (teaserBoxen.length > 1) {
			teaserBoxen.each(function(s, index) {
				if (index == 0) {
					s.setStyle({float: 'left', width: '314px', marginRight: '20px'});
				} else {
					s.setStyle({float: 'left', width: '314px'});
				}
				s.getElementsByClassName('teaserBoxUL')[0].setStyle({height: '300px'});
			});
		}
	}

};


window.onload = function() {
	setPageElements.blurLinks();
	setPageElements.teaserBoxDimensions();
};
