// JavaScript Document

$(document).ready(function(){
						   
	$(".deliveryDetails-panel-content").each(function(){
				$(this).hide();								 
												 });					   
	$(".deliveryDetails-panel-button").click(function(){
	var thePanel = $(this).parent().find(".deliveryDetails-panel-content");
		$(".deliveryDetails-panel-content").each(function(){							 
	 })
	$(thePanel).toggle("fast");
	});
});
