

$(document).ready(function(){
	
	//$(".slider h3").eq(0).addClass("active");
	$(".slider div").eq(0).show();

	$(".slider h3").click(function(){
		$(this).next("div").slideToggle("slow")
		.siblings("div:visible").slideUp("slow");
		$(this).toggleClass("active");
		
		$(this).next("div").toggleClass("active");
		
		$(this).siblings("h3").removeClass("active");
	});
	
	$(".test_row").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-75"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
	});
});

/*
$(document).ready(function()
{
  $('#box_box_info').hide();
  $('#box_adressbuch_info').hide();
  $('#box_drucker_info').hide();

	$('#news_header').click(function()
	{
		$(this).next('div').toggle();
	});
	

	
  $('#box_box').mouseover(function() {
    $('#box_box_info').show();
  }).mouseout(function() {
    $('#box_box_info').hide();
  });
  $('#box_adressbuch').mouseover(function() {
    $('#box_adressbuch_info').show();
  }).mouseout(function() {
    $('#box_adressbuch_info').hide();
  });
  $('#box_drucker').mouseover(function() {
    $('#box_drucker_info').show();
  }).mouseout(function() {
    $('#box_drucker_info').hide();
  });
});
*/
