$(document).ready(function(){
	
	$(".accordion h4").eq(0).addClass("active");
	//$(".accordion p").eq(0).show();

	$(".accordion h4").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h4").removeClass("active");
	});

});

$(function() {	// Use this example, or...	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel		});
