$(document).ready(function() {
	$('ul#meta-nav li:not(:first-child), div#footer li:not(:first-child)').prepend('<span>|</span>');

	$('div#nav li > a, div#nav strong a, div#nav strong:not(:has(a))').prepend('»&nbsp;');

	$('div#nav > ul').superfish({
		delay: 500,
		autoArrows: false,
		dropShadows: false
	});

	/* Datumsauswahl */
	if($('#event-search .date-pick').length != 0) {
		$('#event-search .date-pick').datePicker().val(new Date().asString()).trigger('change');
		$('#event-search .date-pick').dpSetPosition($.dpConst.POS_TOP, $.dpConst.POS_RIGHT);
	}

	$('input.toggleval').each(function() {
		$(this).toggleval();
	});

	$('div#header form button').each(function() {
		$(this).attr('title', $(this).text());
	});

	$('a.fancy').each(function() {
		$(this).fancybox();
		$(this).children('span').attr('title', $(this).text());
	});

	$('.zebra').children('li:even, dd:even').addClass('even').parent().children('li:odd, dd:odd').addClass('odd');
	$('table.zebra').children('tbody').children('tr:even').addClass('even').parent().children('tr:odd').addClass('odd');
});
