$(document).ready(function(){ 	var height = $("#alert div.feature").height();	$("#alert div.feature").css('0', 'height')	$("a.alert-toggle").toggle(                function () { 					$("#alert div.feature").animate({height: "0"}, {queue:false, duration: 1700, easing: 'easeInOutQuint'})  				},				function () {  					$("#alert div.feature").animate({height: height}, {queue:false, duration: 1700, easing: 'easeInOutQuint'})                 }		); }); 
