// JavaScript Document
function initMenu() { 
	$('#testimonialAccordian p').hide(); 
	$('#testimonialAccordian p:first').show(); 
	$('#testimonialAccordian h3').click( 
	function() { 
	var checkElement = $(this).next(); 
	if((checkElement.is('p')) && (checkElement.is(':visible'))) { 
	return false; 
	} 
	if((checkElement.is('p')) && (!checkElement.is(':visible'))) { 
	$('#testimonialAccordian p:visible').slideUp('normal'); 
	checkElement.slideDown('normal'); 
	return false; 
	} 
	} 
	); 
	} 
	$(document).ready(function() {initMenu();});

$(function() {
	$('a.lightbox').lightBox(); // Select all links with lightbox class
});
