$(document).ready(function() {
	// Zebra-Tabellen
	$('table tr:odd').addClass('odd');

	// Teaser-Hover
	$('div.teaser').each(function () {
		$(this).prepend('<div class="teaser-highlight"></div>');
		$(this).children('h2').prepend('<span class="hover"></span>');
		
		var $link = $(this).children('h2').children('a').attr('href');
		$(this).children('.teaser-highlight').append('<a href="' + $link + '"></a>');
		
		var $span = $(this).children().children('.hover').css('opacity', 0);
		$(this).hover(function () {
			$span.stop().fadeTo(300, 1);
		}, function () {
			$span.stop().fadeTo(300, 0);
		});
	});
});

