$(document).ready(function(){
	//Create the accordian Widget
	$("#accordion").accordion({autoHeight: false});
	$('.accordion .head').click(function(){$(this).next().toggle('slow');return false;}).next().hide();
});
