$(document).ready(function() {	$('.sectionTab').click(function() {		$('.sectionContent.on').animate({   		 opacity: [0.1, 'easeOutQuad'],   		 height: 'toggle' 	 }, 600, "easeOutExpo", function() {    // Animation complete.  });		$('.sectionTab').removeClass('on'); 		$('.sectionContent').removeClass('on'); 		if($(this).next().is(':hidden') == true) {				$(this).addClass('on');			$(this).next('.sectionContent').addClass('on');			$(this).next('.sectionContent').animate({    			opacity: [0.9, 'easeInKaiser'],   				 height: 'toggle' 			 }, 900, "easeBackThatDonkeyDonkey", function() {    // Animation complete.  });		 } 	  	 });		$('.sectionTab').mouseover(function() {		$(this).addClass('over');			}).mouseout(function() {		$(this).removeClass('over');											});		$('.sectionContent').hide();	$('.sectionContent').css({ 'opacity' : 0.1 });	$('#featured-work-bg').css({ 'opacity' : 0 });	$('#featured-work a')	.mouseover(function(){		$('#featured-work-bg').stop().animate(			{opacity: "1"}, 500);		})	.mouseout(function(){		$('#featured-work-bg').stop().animate(			{opacity: "0"}, 1000);					})		$('#work-content').animate({    			opacity: [0.9, 'easeInKaiser'],   				 height: 'toggle' 			 }, 900, "easeBackThatDonkeyDonkey", function() {    // Animation complete.  });  });
