function getSymposium(){
	$("#pContent")
		.html('<img src="../images/ajaxLoaderFFF.gif" alt=loader style="margin-left: 47%; margin-top: 10px;" />');
	
	 $('#pContent')
            .bPopup({loadUrl:'http://www.google.com/'});
	/*$.ajax({
		type: "GET",
		url: "../includes/ajaxing.php",
		data: "mode=getSymposiumContent",
		success: function(msg){
			$('#pContent').bPopup(); 
			$("#pContent").html(msg);
			initializeAccordian();
		}
	});*/
	
}

jQuery(document).ready(function(){
	$('#accordion h3').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
});

