function initPage(){
	var speed = 700;
	var holder = $('form.quickly div.text');
	var drop = holder.find('div.drop');
	var drop_h = drop.outerHeight(true);
	drop.css({
		'height': 0,
		'display': 'block',
		'overflow': 'hidden'
	});
	holder.mouseenter(function(){
		drop.animate({
			height:drop_h
		}, {queue:false, duration: speed, complete: function(){
		}});
	}).mouseleave(function(){
		drop.animate({
			height:0
		}, {queue:false, duration: speed, complete: function(){
		}});
	});
}

jQuery(document).ready(function(){
	initPage();
});
