$(document).ready(function() { // start root

$('html').removeClass('nojs');

//	home page feature rotator
/*	$('#feature-wrapper').cycle({
			fx: 					'fade',
			timeout:	'20000',
			speed:			'1000',
			sync:    0
		});*/

// event strip link color transition
$(".notie #event-strip a").mouseenter(function() {
  $(this).stop(true, true).animate({
  	opacity: 0
  }, 'fast');
}).mouseleave(function() {
  $(this).stop(true, true).animate({
  	opacity: 100
  }, 'fast');
});

// media drawers
if ($('#content').hasClass('media-page')) {
//	close sliding drawers on media page
	$('.hidden').hide();
	
// open sliding drawers on media page 
	$('.toggler').click(function() {
		$(this).parent('.visible').siblings('.hidden').slideToggle(500);
		return false;
	});
}

// green open house drawers
if ($('#content').hasClass('green-open-page')) {
	$('.drawer h2').click(function() {
		if ($(this).parent().hasClass('hidden')) {
			$(this).siblings('.inner').slideToggle(500);
			$(this).parent().removeClass('hidden');
		}
		else {
			$(this).siblings('.inner').slideToggle(500);
			$(this).parent().addClass('hidden');
		}
	});
}


// equal heights
	$(".eh1").equalHeights();
	$(".eh2").equalHeights();

	$('#chancellor-video iframe').hide();
	$('#chancellor-video').click(function(){
		$(this).css('background-image', 'none');
		$('iframe', this).show();
	});

	$("#bip .sub-form").validate();
	$("#afftp .sub-form").validate();
	$("#efifsj .sub-form").validate();
	$("#ahcoiai .sub-form").validate();
	$("#diof .sub-form").validate();
	$("#cahf .sub-form").validate();
	
// FD photo gallery	
	if ($("#content-wrapper").hasClass("fd-ss")){
		var gallery = $('#gallery-thumbs').galleriffic({
			numThumbs: 42,
			imageContainerSel:      '#slideshow',
			controlsContainerSel:   '#controls',
			captionContainerSel:    '#caption'
		});
	};
}); // end root
