// services show / hide boxes
	$(window).load(function() {
			
		//Chairman's Welcome Link 
		$('a#chairmans_slider').click(function() {
			$('#about_us').hide('slow');
			$('#chairmans').show('slow');
			$('#history').hide('slow');	
			$('#whoweare').hide('slow');	
			$('#patientscharter').hide('slow');	
			$('#meetstaff').hide('slow');	
			$('#meettrustees').hide('slow');	
			$('#findus').hide('slow');	
			$('#abouthospice').hide('slow');
			$('#hospicemeans').hide('slow');
			$('#terms').hide('slow');
			$('#links').hide('slow');
			return false;
		});
		//History Link 
		$('a#history_slider').click(function() {
			$('#about_us').hide('slow');
			$('#chairmans').hide('slow');
			$('#history').show('slow');	
			$('#whoweare').hide('slow');	
			$('#patientscharter').hide('slow');	
			$('#meetstaff').hide('slow');	
			$('#meettrustees').hide('slow');	
			$('#findus').hide('slow');	
			$('#abouthospice').hide('slow');
			$('#hospicemeans').hide('slow');
			$('#terms').hide('slow');
			$('#links').hide('slow');
			return false;
		});
		//Who we are and what we do Link 
		$('a#whoweare_slider').click(function() {
			$('#about_us').hide('slow');
			$('#chairmans').hide('slow');
			$('#history').hide('slow');	
			$('#whoweare').show('slow');	
			$('#patientscharter').hide('slow');	
			$('#meetstaff').hide('slow');	
			$('#meettrustees').hide('slow');	
			$('#findus').hide('slow');	
			$('#abouthospice').hide('slow');
			$('#hospicemeans').hide('slow');
			$('#terms').hide('slow');
			$('#links').hide('slow');
			return false;
		});
		//Patients Charter Link 
		$('a#patientscharter_slider').click(function() {
			$('#about_us').hide('slow');
			$('#chairmans').hide('slow');
			$('#history').hide('slow');	
			$('#whoweare').hide('slow');	
			$('#patientscharter').show('slow');	
			$('#meetstaff').hide('slow');	
			$('#meettrustees').hide('slow');	
			$('#findus').hide('slow');	
			$('#abouthospice').hide('slow');
			$('#hospicemeans').hide('slow');
			$('#terms').hide('slow');
			$('#links').hide('slow');
			return false;
		});
		//Meet the staff Link 
		$('a#meetstaff_slider').click(function() {
			$('#about_us').hide('slow');
			$('#chairmans').hide('slow');
			$('#history').hide('slow');	
			$('#whoweare').hide('slow');	
			$('#patientscharter').hide('slow');	
			$('#meetstaff').show('slow');	
			$('#meettrustees').hide('slow');	
			$('#findus').hide('slow');	
			$('#abouthospice').hide('slow');
			$('#hospicemeans').hide('slow');
			$('#terms').hide('slow');
			$('#links').hide('slow');
			return false;
		});
		//Meet the trustees Link 
		$('a#meettrustees_slider').click(function() {
			$('#about_us').hide('slow');
			$('#chairmans').hide('slow');
			$('#history').hide('slow');	
			$('#whoweare').hide('slow');	
			$('#patientscharter').hide('slow');	
			$('#meetstaff').hide('slow');	
			$('#meettrustees').show('slow');	
			$('#findus').hide('slow');	
			$('#abouthospice').hide('slow');
			$('#hospicemeans').hide('slow');
			$('#terms').hide('slow');
			$('#links').hide('slow');
			return false;
		});
		//How to find us Link 
		$('a#findus_slider').click(function() {
			$('#about_us').hide('slow');
			$('#chairmans').hide('slow');
			$('#history').hide('slow');	
			$('#whoweare').hide('slow');	
			$('#patientscharter').hide('slow');	
			$('#meetstaff').hide('slow');	
			$('#meettrustees').hide('slow');	
			$('#findus').show('slow');	
			$('#abouthospice').hide('slow');
			$('#hospicemeans').hide('slow');
			$('#terms').hide('slow');
			$('#links').hide('slow');
			return false;
		});
		//10 things you should know about the Hospice Link 
		$('a#abouthospice_slider').click(function() {
			$('#about_us').hide('slow');
			$('#chairmans').hide('slow');
			$('#history').hide('slow');	
			$('#whoweare').hide('slow');	
			$('#patientscharter').hide('slow');	
			$('#meetstaff').hide('slow');	
			$('#meettrustees').hide('slow');	
			$('#findus').show('slow');	
			$('#abouthospice').hide('slow');
			$('#hospicemeans').hide('slow');
			$('#terms').hide('slow');
			$('#links').hide('slow');
			return false;
		});
		//What HospiceCare means Link 
		$('a#hospicemeans_slider').click(function() {
			$('#about_us').hide('slow');
			$('#chairmans').hide('slow');
			$('#history').hide('slow');	
			$('#whoweare').hide('slow');	
			$('#patientscharter').hide('slow');	
			$('#meetstaff').hide('slow');	
			$('#meettrustees').hide('slow');	
			$('#findus').hide('slow');	
			$('#abouthospice').hide('slow');
			$('#hospicemeans').show('slow');
			$('#terms').hide('slow');
			$('#links').hide('slow');
			return false;
		});
		//Useful Links Link 
		$('a#links_slider').click(function() {
			$('#about_us').hide('slow');
			$('#chairmans').hide('slow');
			$('#history').hide('slow');	
			$('#whoweare').hide('slow');	
			$('#patientscharter').hide('slow');	
			$('#meetstaff').hide('slow');	
			$('#meettrustees').hide('slow');	
			$('#findus').hide('slow');	
			$('#abouthospice').hide('slow');
			$('#hospicemeans').hide('slow');
			$('#terms').hide('slow');
			$('#links').show('slow');
			return false;
		});
		
	});
