function showLink(link){
	window.open(link);
}
function service_mover(td_id)
{
	getDivByID(td_id).className = "service_default service_mover";
	getDivByID('service_'+document.getElementById('hidden_serv_id').value).className = "service_mover service_default";
}
function service_mout(td_id)
{
	var current_serv_id='service_'+document.getElementById('hidden_serv_id').value;
	if(td_id==current_serv_id)
		getDivByID(td_id).className = "service_default service_mover";
	else
		getDivByID(td_id).className = "service_default service_default";
	getDivByID('service_'+document.getElementById('hidden_serv_id').value).className = "service_mover service_default";
}		
function show_service(serv_id)
{
	var message='';
	var div_id='service_'+serv_id;
	switch(serv_id)	
	{
		case 1:
					message="Had an accident? Call our Accident Management hotline immediately.";
					break;
		case 2:
					message="We provide a three year warranty on all work undertaken.";
					break;
		case 3:
					message="Repairing modern, technologically advanced motor vehicles has never been more challenging. Higher quality and complexity in vehicle body design has increased the training needs and competency levels for technicians engaged in body repairs. As a company we have invested substantial amounts of time, effort and money into ensuring that your vehicle will be repaired correctly. You should be interested in this value and we would welcome you asking for more information in regards to the BSi Thatcham Kitemark Approval we have attained, we are very proud of this award and want to tell you why.";
					break;
		case 4:
					message="Equity Red Star";
					break;
		case 5:
					message="Mazda <br> Nissan";
					break;
		case 6:
					message="Please ask us to quote your vehicle for parking sensor fitting.";
					break;
		case 7:
					message="Want that great feeling when you get back into it your vehicle after a full valet. We remove all the grime, polish the paint, deep clean the interior, black the tyres all of which can be done at the same time as your vehicle is being repaired.";
					break;
		case 8:
					message="With the increase in costs levied against returned vehicles requiring repairs for minor scratches, dinks etc why not ask us to quote for these prior to you returning your vehicle. We offer a professional service and will only quote for the works you request.";
					break;
		case 9:
					message="Not only do we offer full accident repair support we also specialise in SMART (small-medium-area-repair-techniques) repairs for those not so serious accidents but often annoying dents and scratches. What this means is that any scratches, small dents and chips that are extremely common with today’s driving conditions, can now be repaired without the expense and inconvenience of replacing a full panel. In most cases the costs are much lower than your insurance company excess.  Not only are defects unsightly but they will also reduce the resale value of the car.";
					break;
		case 10:
					message="It's so easy to clip a kerb and damage your very expensive alloy wheels.  We can repair them back to new condition at a fraction of the cost of replacement; just ask us for a quote.";
					break;
		case 11:
					message="All Air Conditioning systems lose effectiveness over a period of time - you may have noticed that it remains warm inside your car when it's warm outside. We provide a simple inexpensive procedure to ensure you stay cool at all times, just ask for a quote.";
					break;
		case 12:
					message="These can be arranged at your convenience, please ask for further details";
					break;
		case 13:
					message="24Hour Roadside recovery service available here, telephone 01434 608150.";
					break;
		case 14:
					message="As a complimentary service to all our customers we offer our full accident management service. This ensures that you are looked after and your vehicle repaired to the standard you would expect. This service includes free legal assistance advice together with a complementary accident management package to all customers.<p>The service ensures that your vehicle is repaired at a garage of your choice, and you are given access to immediate physiotherapy to aid recovery.";
					break;
		case 15:
					message="Enquire further about cosmetic aluminium repairs, we will ensure the correct procedure for the effective repair of aluminium panels is carried out at all times.";
					break;
		case 16:
					message="Can be provided upon request for fault/non-fault accidents, please do not hesitate to enquire further.";
					break;
		case 17:
					message="Taxi Repairs / Light Commercial Vehicles";
					break;		
		case 18:
					message="Contact us further to find out more about this service.";
					break;										
	}
	document.getElementById('service_listing').style.display='block';
	document.getElementById('service_listing').innerHTML=message;
	var cur_serv_id=document.getElementById('hidden_serv_id').value;
	if(cur_serv_id) getDivByID('service_'+cur_serv_id).className = "service_default service_default";
	getDivByID(div_id).className = "service_default service_mover";
	document.getElementById('hidden_serv_id').value=serv_id;
}
