window.addEvent('domready',function(){

	
	function showImage(id){
		$$('.currentImage').removeClass('currentImage');
		$(id).addClass('currentImage');
	}
	
	$$('#blocks_in_foto li').addEvents({
			'mouseenter': function(){
		    	this.setStyle('background-position','0 -52px');
				showImage('bild_'+this.get('id'));
			},
			'mouseleave': function(){
			    this.setStyle('background-position','0 -1px');
				showImage('startbild');
			}
	});
	
	if($('newsmeldungen') !== null) {
		$$('#newsmeldungen li').addEvent('click',function(e){
			window.location=this.getElement("a").get("href"); return false;
		});
	}

});
