$(document).ready(function() {  
	
	for (var q=1; q<7; q++) {
	$(".answer_"+q).hide();		
	};
	
	$(".faq_box p a").mousedown(function() {
	var symbolnr = $(this).attr("href");
		$(".faq_box p .faq_"+symbolnr).one("click", function(){
			$.each( [0,1,2,3,4,5,6], function(i, n){
	  		  $(".answer_"+i).hide();
			  $(".faq_"+i).css("font-weight","normal");
			});
		$(".answer_"+symbolnr).slideDown();
		$(".faq_"+symbolnr).css("font-weight","bold");
		$(".faq_"+symbolnr).css("color","#1395d2");
		$(".faq_intro").hide();
		return false;
  		});		
	});
	
	
  	$(".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_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();
  	 });	
});