$(document).ready(function(){
		$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
		
	//$(".accordion h3:first").addClass("active");
	//$(".accordion div:not(:first)").hide();
	$(".accordion div").hide();
	$(".accordion h3").click(function(){
		//var t = $(this).attr('class');
		//alert(t);
		$(this).next("div").slideToggle("slow").siblings("div:visible").slideUp("slow");
	//	$(this).next("div").slideToggle("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
		$.scrollTo( '#body' );
	});
		
	});
