$(document).ready(function(){







	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//on click
	$("li").click(function(){
	
    	
	  //close any other open login div 
    $("div.subtext").stop().animate({height:'0px'},{queue:false, duration:300, easing: 'easeOutQuint'})
  
    //open clicked div
		$("div", this).stop().animate({height:'170px'},{queue:false, duration:400, easing: 'easeOutQuint'})
		
		//focus on first input - needs to be implemented properly.
		//$("input:first", this).focus();		
		

	});
	
	
});
