(function ( $, window, document, undefined ) {

	$(document).ready(function(){

		// Hide this until more sites are live.
		//$sections = $('section>section');
		//
		//$sections.each(function(){
		//	
		//	var $this = $(this);
		//	var $bg = $('<span class="bg"></span>');
		//	var $ul = $this.find('ul');
		//
		//	var idx = $this.index();
		//
		//	$bg.css({opacity: 0});
		//	$bg.appendTo($this);
		//
		//	$this.bind('mouseenter', function(){
		//
		//		var opts = {
		//			duration: 300,
		//			queue: false,
		//			easing: 'easeInOutExpo'
		//		};
		//
		//		$this.animate({
		//			marginTop: -21,
		//			color: '#fff'
		//		}, opts);
		//
		//		$ul.animate({
		//			borderColor: '#444'
		//		}, opts);
		//
		//		$bg.animate({
		//			opacity: 1
		//		}, opts);
		//
		//		if ( ! $.browser.msie) {
		//			$sections.filter(':not(:eq('+idx+'))').animate({
		//				opacity: 0.5
		//			}, opts);
		//		}
		//	})
		//	.bind('mouseleave', function(){
		//
		//		var opts = {
		//			duration: 300,
		//			queue: false,
		//			easing: 'easeInOutExpo'
		//		};
		//
		//		$this.animate({
		//			marginTop: 0,
		//			color: '#666'
		//		}, opts);
		//
		//		$ul.animate({
		//			borderColor: '#333'
		//		}, opts);
		//
		//		$bg.animate({
		//			opacity: 0
		//		}, opts);
		//
		//		if ( ! $.browser.msie) {
		//			$sections.filter(':not(:eq('+idx+'))').animate({
		//				opacity: 1
		//			}, opts);
		//		}
		//
		//	});
		//	
		//});

	});

})( jQuery, window, document );

