$(document).ready(
	function() {
	
	// Toggle boxes on schedule page.
	$('ul.toggle li p').hide();
	$('ul.toggle li h4 a').click(function(){
		if ($(this).hasClass('open')){
			$(this).parent('h4').siblings('p').slideUp();
			$(this).removeClass('open');
		} else {
			$(this).parent('h4').siblings('p').slideDown();
			$(this).addClass('open');
		}
		return false;
	});

	// move label into text box
	$("input.mc_input").labelify({text: "label", labelledClass: "dim" });
	
	//ie6 png support
	$('h1').supersleight();	

	}
);
