jQuery.noConflict();

(function($) {

$(function() {
	var $fsBox = $("#fast_select");
	var origHeight = $fsBox.css({ visibility: "hidden", height: "auto" }).outerHeight();
	var speed = 400;
	
	$fsBox
		.css({
			visibility: "visible",
			height: "23px"
		})
		.find("#dummy")
		.toggle(
			function() {
				$(this)
					//.find("#dummy")
					.css("background", "transparent url(images/fast_select_middle.png) top left repeat-y")
					//.end()
					.parent().parent()
					.animate({height: origHeight+"px"}, speed, "swing");
			},
			function() {
				$(this)
					.parent().parent()
					.stop()
					.animate({height: "23px"}, speed, "swing", function() {
						$(this)
							.find("#dummy")
							.css("background", "transparent url(images/fast_select_bottom.png) bottom left no-repeat");
					});
			}
		);
});
})(jQuery);