// initialize accordion

jQuery(document).ready(function($)
{
	$(".accordion").accordion({
		header: "h2",
		autoHeight: false
	});
});
