// JavaScript Document	
	$().ready(function(){
			jQuery('#theMenu').Accordion({
		active: false,
		header: '.head',
		alwaysOpen: false,
		animated: true,
		showSpeed: 800,
		hideSpeed: 800
	}).activate(6);
	
	jQuery('#subscriptions').Accordion({
		active: false,
		header: '.subHead',
		alwaysOpen: false,
		animated: true,
		showSpeed: 900,
		hideSpeed: 800
	});
	
	
	
	
	
	jQuery('#specialEvents').Accordion({
		active: false,
		header: '.subHead',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
	
	
	jQuery('#news').Accordion({
		active: false,
		header: '.subHead',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	}).activate(2);
	
	
	$(".moreInfo").click(function () {
      $(".expand").toggle("slow");
    });
	
	
	$(".moreInfo1").click(function () {
      $(".expand1").toggle("slow");
    });
	
	
	$(".moreInfo2").click(function () {
      $(".expand2").toggle("slow");
    });
	
	
	$(".moreInfo3").click(function () {
      $(".expand3").toggle("slow");
    });
	
	$(".moreInfo4").click(function () {
      $(".expand4").toggle("slow");
    });
	
	$(".moreInfo5").click(function () {
      $(".expand5").toggle("slow");
    });
	
	$(".moreInfo6").click(function () {
      $(".expand6").toggle("slow");
    });
	
	$(".moreInfo7").click(function () {
      $(".expand7").toggle("slow");
    });
	
	$(".moreInfo8").click(function () {
      $(".expand8").toggle("slow");
    });
	
	
	$(".moreInfo9").click(function () {
      $(".expand9").toggle("slow");
    });
	
	$(".moreInfo10").click(function () {
      $(".expand10").toggle("slow");
    });
	
	$(".moreInfo11").click(function () {
      $(".expand11").toggle("slow");
    });
	
	$(".moreInfo12").click(function () {
      $(".expand12").toggle("slow");
    });
	
		$(".credit").mouseover(function () {
      $(".expandCredit").show("slow");
    }).mouseout(function(){
      $(".expandCredit").hide("slow");
    });
	
		
	$('img[@src$=.png]').ifixpng();			
		
	});
