$(document).ready(function(){					
	$(".home").hover(function(){
		$(this).children(".teaser_text").children("a").children(".image").fadeOut("fast");
	},function(){
		$(this).children(".teaser_text").children("a").children(".image").fadeIn("fast");
	});
	$("#header .text").focus( function() {
		if($(this).val()=="Suchen"){
			$(this).val("");
		}
	});
	$("#header .text").blur( function() {
		if($(this).val()==""){
			$(this).val("Suchen");
		}
	});
	$("a.group").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true }); 
	$("table.alternate tr:odd").addClass("odd");
});
