/*
	Veriam scripts (utilizing jQuery 1.2.2)
*/

/* --- Initialize page --- */
$(document).ready(function(){


	// Homepage accordian
	$("#features>p").not(":first").hide();
	$("#features>h3:first").addClass("active");

	$("#features>h3").click(function() {
		if ($(this).is(".active")) return;

		// Clear old active style
		$("#features>h3.active").removeClass("active");

		$(this).addClass("active")
			.next("p:hidden")
				.slideToggle("fast")
				.siblings("p:visible")
					.slideUp("fast");
	});

});