// JavaScript Document
$(document).ready(function(){  
	//about us  
	$(".aboutus").mouseover(function(){  
		$(this).stop().animate({height:'192px'},{queue:false, duration:300, easing: 'easeOutQuad'})  
	});  
	$(".aboutus").mouseout(function(){  
		$(this).stop().animate({height:'40px'},{queue:false, duration:300, easing: 'easeOutQuad'})  
	});
	
	// programs 
	$(".programs").mouseover(function(){  
		$(this).stop().animate({height:'141px'},{queue:false, duration:300, easing: 'easeOutQuad'})  
	});  
	$(".programs").mouseout(function(){  
		$(this).stop().animate({height:'40px'},{queue:false, duration:300, easing: 'easeOutQuad'})  
	});

	// enrollment 
	$(".enrollment").mouseover(function(){  
		$(this).stop().animate({height:'141px'},{queue:false, duration:300, easing: 'easeOutQuad'})  
	});  
	$(".enrollment").mouseout(function(){  
		$(this).stop().animate({height:'40px'},{queue:false, duration:300, easing: 'easeOutQuad'})  
	});

	// contact us 
	$(".contact").mouseover(function(){  
		$(this).stop().animate({height:'141px'},{queue:false, duration:300, easing: 'easeOutQuad'})  
	});  
	$(".contact").mouseout(function(){  
		$(this).stop().animate({height:'40px'},{queue:false, duration:300, easing: 'easeOutQuad'})  
	});
});  