$(document).ready(function(){
	
	//$(".acc h3").eq(1).addClass("active");
	//$(".acc p").eq(1).show();
 
	$(".acc h3").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});
 
});


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