$(document).ready(function(){						   passbg=$(".choices").css("background-color");						   						   $(".choices").css("opacity","0");		$(".choices").each(function(){												$(this).css("top","-"+$(this).height()+"px");						//$(this).find("a:first").css("padding-top","6px");				//$(this).find("a:last").css("padding-bottom","6px");				//$(this).find("a:last").css("border-bottom-width","0px")																});						   	$(".indibut").mouseover(function(){													//mymover=$(this).closest(".indibut");						mymover=$(this);					$(this).find(".title a").css("background-color",passbg);					//$(mymover).find(".drops").css("height",$(mymover).find(".choices").height()+"px");					$(this).find(".drops").animate({"height":$(this).find(".choices").height()+"px"},{queue:false, duration:450, easing: 'easeOutExpo'});					//alert($(mymover).find(".choices").height()+"px");					$(this).find(".choices").animate({"top":"0px"},{queue:false, duration:450, easing: 'easeOutExpo'});					$(this).find(".choices").animate({"opacity":"1"},{queue:false, duration:1000});					//$(".drops").css("height","200px");								});			$(".indibut").mouseout(function(){													//mymover=$(this).closest(".indibut");						mymover=$(this);					$(this).find(".title a").css("background-color","");					//$(mymover).find(".drops").css("height",$(mymover).find(".choices").height()+"px");					$(this).find(".drops").animate({"height":"0px"},{queue:false, duration:450, easing: 'easeOutExpo'});					//alert($(mymover).find(".choices").height()+"px");					$(this).find(".choices").animate({"top":"-"+$(this).find(".choices").height()+"px"},{queue:false, duration:450, easing: 'easeOutExpo'});					$(this).find(".choices").animate({"opacity":"0"},{queue:false, duration:900, easing: 'easeOutExpo'});					//$(".drops").css("height","200px");								});			});
