// JavaScript Document
	$().ready(function(){
	
			jQuery('#theMenu').Accordion({
		active: false,
		header: '.head',
		alwaysOpen: false,
		animated: true,
		showSpeed: 800,
		hideSpeed: 800
	}).activate(0);
	
	
	jQuery('#season').Accordion({
		active: false,
		header: '.subHead',
		alwaysOpen: true,
		animated: true,
		showSpeed: 900,
		hideSpeed: 800
	}).activate(0);
	
	jQuery('#season1011').Accordion({
		active: false,
		header: '.subHead',
		alwaysOpen: false,
		animated: true,
		showSpeed: 900,
		hideSpeed: 800
	});
	
	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
	});
	
	
	$(".credit").mouseover(function () {
      $(".expandCredit").show("slow");
    }).mouseout(function(){
      $(".expandCredit").hide("slow");
    });
	
	
		
	$('img[@src$=.png]').ifixpng();			
		
	});
