//  setup case studies
	var totallinks=8
	var urls=new Array(totallinks)
	var descriptions=new Array(totallinks)
	var titles=new Array(totallinks)

	titles[0]="Web Design and Software Development Company"
	urls[0]="case-studies-cva.html"
	descriptions[0]="Software Limited had been trading for around seven years. The company is a small business with two directors - and husband"
	descriptions[0]+=" and wife team - and five employees. It specialises in two key areas: building and hosting web sites for multiple"
	descriptions[0]+=" different businesses and developing bespoke software solutions."

	titles[1]="Machine Tool Manufacturer"
	urls[1]="case-studies-cva.html"
	descriptions[1]="A management buy out (MBO) had been undertaken of a long established (100 years old) engineering company in receivership."
	descriptions[1]+=" As is often the case, the MBO was undercapitalised from the outset but the business was profitable, making &pound;170,000"
	descriptions[1]+=" on &pound;3.9m of sales in its first year"
	descriptions[1]+=""

	titles[2]="Optic Cables Manufacturer"
	urls[2]="case-studies-admin-orders.html"
	descriptions[2]="The company was hugely over manned, had too many properties and was acquired by a venture capital company for a small sum."
	descriptions[2]+="<br />It was decided that a combination of an Administration Order and CVA were the best way to save the business."
	descriptions[2]+=" The business first needed protection from aggressive creditors. The business was therefore placed into administration,"
	descriptions[2]+=" with a view to proposing a CVA as soon as possible."
	
	titles[3]="Ailing Mushroom Grower"
	urls[3]="case-studies-admin-orders.html"
	descriptions[3]="Based in Hertfordshire, the company operated from a large site producing 80 tons of mushrooms per week, "
	descriptions[3]+="supplying several high street supermarket chains. This well-established business employed 220 staff with annual " 
	descriptions[3]+="sales of &pound;44 million."
	descriptions[3]+="<br />The business encountered severe problems caused by a fire, which resulted in a significant drop in production."

	titles[4]="Franchise Company - Car Window Tinting"
	urls[4]="case-studies-liquidations.html"
	descriptions[4]="The Director of the business invested much of his savings to buy an expensive franchise.  He was worried that"
	descriptions[4]+=" it was not performing well and he was investing in more and more capital. The business had purchased equipment on" 
	descriptions[4]+=" HP and had numerous additional debts. However, these could not be satisfied by day to day trading. The director"
	descriptions[4]+=" decided that the business was fundamentally flawed as it was based in the wrong location."

	titles[5]="Multiple Companies Group"
	urls[5]="case-studies-liquidations.html"
	descriptions[5]="This group of 8 estate agencies had been going through financial difficulty. One of the 8 had already been" 
	descriptions[5]+=" liquidated by a creditor (compulsory liquidation). The owners of the business thought that a further 6 of the 8" 
	descriptions[5]+=" agencies were insolvent and one remained solvent.<br />"
	descriptions[5]+="On closeer inspection of the businesses, it became clear that 5 of the companies needed to be closed and liquidated."

	titles[6]="Bathroom Accessories manufacturer"
	urls[6]="case-studies-phoenixing.html"
	descriptions[6]="Following the loss of the company's major customer and a steady decline in the gross profit margin, arising"
	descriptions[6]+=" from costs associated with manufacturing in the UK, the directors were forced to reassess the future of the company." 
	descriptions[6]+="<br />After reviewing the company's financial position it was established that it would not be able to service its"
	descriptions[6]+=" existing liabilities from future trading."

	titles[7]="Promotional Merchandise Distributor"
	urls[7]="case-studies-phoenixing.html"
	descriptions[7]="In developing the business and the customer base, the company had traded at small losses for most months for a" 
	descriptions[7]+=" couple of years, this accumulated in an unsustainable level of trade creditors." 
	descriptions[7]+="<br />Redundancies were made, overheads cut and an informal repayment arrangement was offered to the trade creditors,"
	descriptions[7]+=" together with a write down of half of their debt in order to keep the business going."

	var Study=Math.floor(Math.random()*totallinks)
	var studytitle="<strong>"+titles[Study]+"</strong>"
	var studycontent=descriptions[Study]
	var studylink="<a href='"+urls[Study]+"' class='greenText floatR'>More...</a>"

// casebox start 
	document.write('    <div class="smallBox"> ');
	document.write('      <div class="smallBoxHeader">&nbsp; Success Stories</div> ');
	document.write('      <div class="smallcontent"> ');
	document.write(studytitle);
	document.write('        <br /><br /> ');
	document.write(studycontent);
	document.write('        <br /> ');
	document.write(studylink);
	document.write('        <br /> ');
	document.write('      </div> ');
	document.write('      <div class="smallBoxFooter"></div> ');
	document.write('    </div> ');
// casebox end 
