
     $(document).ready(function(){
		//Accordion Panels for Conference
       $(".accordion h3:first").addClass("active");
		$(".accordion div:not(:first)").hide();

		$(".accordion h3").click(function(){
		$(this).next("div").slideToggle("slow")
		.siblings("div:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
		});
     
     

	    //Rounded Corners
	   $("#ClientLogins").corner("bottom 8px");
	   $(".RightColPanel").corner("8px");
	   $("blockquote").corner("8px");
	   $(".EventBookingPanel").corner("8px");
	   $("#MissionStatement").corner();
	   $(".Explanation").corner();
	   $("#BBBEEStatus").corner();
	   
	   
	   	   //Menu items
	   $('li.MainNavLink').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
		
		//Our Divisions Content Slider
		$('#LogosSlider') 
		.after('<div id="DivisionsNav">') 
		.cycle({ 
		    fx:     'scrollLeft', 
		    speed:  'fast', 
		    timeout: 10000, 
		    pager:  '#DivisionsNav' 
			});	  
		
		$(function() {
		$('.PhotoGallery a').lightBox({fixedNavigation:true});
		});
	 });
