$(document).ready(function(){
	
	$(".accordion h3.dspAcc:first").addClass("active");
	$(".accordion div.vtnAcc:not(:first)").hide();

	$(".accordion h3").click(function(){
		$(this).next("div.vtnAcc").slideToggle("slow")
		.siblings("div.vtnAcc:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3.dspAcc").removeClass("active");  
		
		$(".lightbox").lightbox({fitToScreen: true});  
	});
    
});
