jQuery(document).ready(function($){

	// Fancybox
	$("*[rel^='fancybox']").fancybox({
		'titlePosition' : 'over',
		'onComplete' : function() {
			$("#fancybox-wrap").hover(function() {
				$("#fancybox-title").show();
			}, function() {
				$("#fancybox-title").hide();
			});
		}
	});	
	
	// Fancybox-frame fuer AGB & Datenschutz
	$('.fb_frame').fancybox({
		'width'				: '50%',
		'height'			: '75%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$("ul li:even,table tr:even").addClass("even");
	$("ul li:odd,table tr:odd").addClass("odd");
	$("ul li:first-child,table tr:first-child").addClass("first");
	$("ul li:last-child,table tr:last-child").addClass("last");
	
});