jQuery.noConflict();

jQuery(document).ready(function($){
	
	$("#InteriaBlokPrawy div.box").hide();
	
	$("#InteriaBlokPrawy h3").eq(0).addClass("active");
	$("#InteriaBlokPrawy div.box").eq(0).show();

	$("#InteriaBlokPrawy h3").click(function(){
		$(this).next("div.box").slideToggle("100")
		.siblings("div.box:visible").slideUp("100");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});

});