$(document).ready(function() { 

	// Bilderbereich im Kopf
	$('.headbild').cycle({ 
		fx: 'fade', 
	    speed:  3500
	});
	
	// Tabellenzeilen
	$('#inhalt table:not(.weathertable) tr:even').addClass('wechsel');
	
	// RSS-Seiten auf neuer Seite
	$('.rss a[href^="http://"]').click(function() { 
		window.open(this.href); 
		return false; 
	});

});