$(document).ready(function()
{
	list_anim("ul.dropdown", 30, 150, 300);
	
});

function list_anim(list_id, pad_out, pad_in, time)
{
	
	$(list_id).each(function(i)
	{	
		$(this).children("li").click (function (){
			
		if ($(this).is('.li_open')){
		$(".ulp").animate ({width: 0}, 300);
		$(this).removeClass("li_open");
		$(this).addClass("li_closed");
		$(".li_closed").animate ({height: 45}, time);
		$(".li_open").animate ({height: 175}, 500);
		
		
		} else if ($(this).is('.li_closed')) {
			
		
		$(list_id).children('.li_open').addClass("li_closed");
		$(list_id).children('.li_open').removeClass("li_open");
		$(this).removeClass("li_closed");
		$(this).addClass("li_open");
		$(".li_closed").animate ({height: 45}, time);
		$(".li_open").animate ({height: 175}, 500);
		$(".ulp").animate ({width: 500}, 800);
		};
		});
	});
}


