function Accordion() {  

$('.accordianH2').click(  
	function() {  
		var checkElement = $(this).next();  
		if((checkElement.is('div')) && (checkElement.is(':visible'))) { //if you click on an unordered list and this list is opened (visible)  
			return false; //nothing happens  
		}  
		if((checkElement.is('div')) && (!checkElement.is(':visible'))) { //if you click on an unordered list and this list is not opened (visible)  
			$('.pane:visible').slideUp("easeInOutExpo"); // the list that is visible will close (slideUp)  
			checkElement.slideDown("easeInOutExpo"); //the list you clicked will open (slideDown)  
			return false;  
			}  
		}  
	);  
} 
	
 $(document).ready(function() {Accordion();}); 
