$.ui.accordion.animations.superbounce = function(options) {
	this.slide(options, {
		easing: "easeInOut",
		duration: 700
	});
 };
 
 
 $(function () {
  $('UL.drawers').accordion({
   //clearStyle: true,
    // the drawer handle
	//autoHeight:true,
    header: 'H2.drawer-handle',

  //animated: 'superbounce',
    // our selected class
    selectedClass: 'open',
    
    // match the Apple slide out effect
    event: 'click'
  });
});
 
 
 /*$(document).ready(function(){
$(".jqColumn").vjustify(); 
});

window.onload(function(){
$(".jqColumn").vjustify(); 
});*/

function init() {
$(".jqColumn").vjustify();
}
window.onload = init;

$(document).ready(function(){
		$("dd").hide();
		$("dt a").click(function(){
			$("dd:visible").slideUp("slow");
			$(this).parent().next().slideDown("slow");

			return false;
		});
	});