$(document).ready(function() {  
	$(".quicklink_in_1").hide();
	$(".quicklink_in_2").hide();
	$(".quicklink_in_3").hide();
	$(".quicklink_1 a").hover(function(){
		var $root = $(this);
		$root.children(".quicklink_out").hide();
		$root.children(".quicklink_in_1").show();
		$root.parents(".smallteaser_right_margin").children(".smallteaser_right_content").children(".quicklink_out").hide();
		$root.parents(".smallteaser_right_margin").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_margin").children(".smallteaser_right_content").children(".quicklink_in_1").hide();
		$root.parents(".smallteaser_right_margin").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_margin").children(".smallteaser_right_content").children(".quicklink_out").hide();
		$root.parents(".smallteaser_right_margin").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_margin").children(".smallteaser_right_content").children(".quicklink_in_2").hide();
		$root.parents(".smallteaser_right_margin").children(".smallteaser_right_content").children(".quicklink_out").show();
  	 });	
	 $(".quicklink_3 a").hover(function(){
		var $root = $(this);
		$root.children(".quicklink_out").hide();
		$root.children(".quicklink_in_3").show();
		$root.parents(".smallteaser_right_margin").children(".smallteaser_right_content").children(".quicklink_out").hide();
		$root.parents(".smallteaser_right_margin").children(".smallteaser_right_content").children(".quicklink_in_3").show();
	},function(){
		var $root = $(this);
		$root.children(".quicklink_in_3").hide();
		$root.children(".quicklink_out").show();
		$root.parents(".smallteaser_right_margin").children(".smallteaser_right_content").children(".quicklink_in_3").hide();
		$root.parents(".smallteaser_right_margin").children(".smallteaser_right_content").children(".quicklink_out").show();
  	 });		
});