
//written by Brandon More

$(document).ready(function(){

var tabs = $(".tab");
var current_tab = "";

function dropdown(){
	tabs.hover(
		function(){
			current_tab = $(this);
			current_tab.attr("class", "current");
			var dropdown = $(this).children("ul");
			//dropdown.css("display", "block");
			dropdown.animate(
					{"height": "toggle"}, 220);		 
		},
		function(){
			current_tab.attr("class", "");
			var dropdown = $(this).children("ul");
			//dropdown.css("display", "none");
			dropdown.stop(true, true).slideUp("fast");	
		}	
	);
}

dropdown();

});	


