$(document).ready(function(){
    
    $("img.arrowfloat").click(function () {
      $("#slidetest").slideToggle("slow");
	  });    
	$("#testZone").slideBox({width: "100%", height: "550px", position: "top"});
	$(".toggle_container").hide();

	$("h2.trigger").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("h2.trigger").click(function(){
		if ($(this).next().css("display")=="block") {
			$(this).next(".toggle_container").animate({
				marginBottom:-2
			},60);
			$(this).next(".toggle_container").slideUp(200);			

		} else {
			$(this).next(".toggle_container").slideDown(200);			
			$(this).next(".toggle_container").animate({
				marginBottom:5
			},60);
		}

	});
});
