jQuery().ready(function(){
	// simple accordion
	jQuery('#accordion').accordion({
		header: "h3",
		autoheight: true,
		selectedClass: "sel",
		active: true
	});
});
$("a#home").click(function () {
	$("div#content").fadeOut("slow", function() {
		document.location = "index.php";
	});
	return false;
});
