$(document).ready(function() {  

	$(".fade_in").hide();
	$(".smallteaser .smallteaser_footer").hoverIntent(function(){
		var $root = $(this).parents(".smallteaser").children(".smallteaser_content").children("a");
		
		$root.children(".fade_in_smallteaser").SlideInDown("fast");
		$(this).children("a").children(".fade_out").hide();
		$(this).children("a").children(".fade_in").show();
	},function(){
		var $root = $(this).parents(".smallteaser").children(".smallteaser_content").children("a");
		
	    $root.children(".fade_in_smallteaser").hide();
		$root.children(".fade_out").show();		
		$(this).children("a").children(".fade_in").hide();
		$(this).children("a").children(".fade_out").show();
  	});		
	
	$(".smallteaser .smallteaser_content").hoverIntent(function(){
		var $root = $(this).parents(".smallteaser").children(".smallteaser_content").children("a");
		
		$root.children(".fade_in_smallteaser").SlideInDown("fast");
		var $root2 = $(this).parents(".smallteaser").children(".smallteaser_footer");
		$root2.children("a").children(".fade_in").show();
		$root2.children("a").children(".fade_out").hide();
	},function(){
		var $root = $(this).parents(".smallteaser").children(".smallteaser_content").children("a");
	    $root.children(".fade_in_smallteaser").hide();
		$root.children(".fade_out").show();
		var $root2 = $(this).parents(".smallteaser").children(".smallteaser_footer");
		$root2.children("a").children(".fade_in").hide();
		$root2.children("a").children(".fade_out").show();
  	});	

	
  	$(".quicklink_in_1").hide();
	$(".quicklink_in_2").hide();
	$(".quicklink_1 a").hover(function(){
		var $root = $(this);
		$root.children(".quicklink_out").hide();
		$root.children(".quicklink_in_1").show();
		$root.parents(".smallteaser_right").children(".smallteaser_right_content").children(".quicklink_out").hide();
		$root.parents(".smallteaser_right").children(".smallteaser_right_content").children(".quicklink_in_1").show();
	},function(){
		var $root = $(this);
		$root.children(".quicklink_in_1").hide();
		$root.children(".quicklink_out").show();
		$root.parents(".smallteaser_right").children(".smallteaser_right_content").children(".quicklink_in_1").hide();
		$root.parents(".smallteaser_right").children(".smallteaser_right_content").children(".quicklink_out").show();
  	});		
	$(".quicklink_2 a").hover(function(){
		var $root = $(this);
		$root.children(".quicklink_out").hide();
		$root.children(".quicklink_in_2").show();
		$root.parents(".smallteaser_right").children(".smallteaser_right_content").children(".quicklink_out").hide();
		$root.parents(".smallteaser_right").children(".smallteaser_right_content").children(".quicklink_in_2").show();
	},function(){
		var $root = $(this);
		$root.children(".quicklink_in_2").hide();
		$root.children(".quicklink_out").show();
		$root.parents(".smallteaser_right").children(".smallteaser_right_content").children(".quicklink_in_2").hide();
		$root.parents(".smallteaser_right").children(".smallteaser_right_content").children(".quicklink_out").show();
  	 });	
});