$(document).ready(function(){
						   
						   $(".choices").css("opacity","0");
						   defaultcolor=$(".title a").css("color");
						   hovercolor=$(".choices a").css("color");
	
	$(".choices").each(function(){
				
				$(this).parents(".drops").css("width",$(this).width()+"px");
								
				$(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("color",hovercolor);
					//$(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("color",defaultcolor);
					//$(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");
								});
	
	
	
});
