$(document).ready(function() {

	// Slideshow Sponsoren-Logos
	var sponsorlist = $("div#promo_sponsoren ul");
	if (sponsorlist.length != 0) {
		sponsorlist.innerfade({
			speed: 1500,
			timeout: 5000
		});
	}

	// Zebra-Tabellen
	var raceSchedule = $("table.race-schedule");
	if (raceSchedule.length != 0) {
		raceSchedule.find("tr:nth-child(odd)").addClass("odd");
	}
	
	// Smooth Scroll
	$("p.top a, div#prevRacingSeasons a").click(function(e) {
		$("html, body").animate({
			scrollTop: $($(this).attr("href")).offset().top + "px"
		}, 1000, "swing");
		e.preventDefault();
	});

});