// services show / hide boxes
	$(window).load(function() {
			
		//Volunteering Link 
		$('a#volunteering_slider').click(function() {
			$('#get_involved').hide('slow');
			$('#volunteering').show('slow');
			$('#fundraising').hide('slow');	
			$('#shop').hide('slow');	
			$('#legacies').hide('slow');	
			$('#giveaminute').hide('slow');	
			$('#corporate').hide('slow');	
			$('#grantsandtrusts').hide('slow');	
			$('#community').hide('slow');
			$('#hospicemeans').hide('slow');
			return false;
		});
		//Fundraising Events Link 
		$('a#fundraising_slider').click(function() {
			$('#get_involved').hide('slow');
			$('#volunteering').hide('slow');
			$('#fundraising').show('slow');	
			$('#shop').hide('slow');	
			$('#legacies').hide('slow');	
			$('#giveaminute').hide('slow');	
			$('#corporate').hide('slow');	
			$('#grantsandtrusts').hide('slow');	
			$('#community').hide('slow');
			$('#hospicemeans').hide('slow');
			return false;
		});
		//Shop Link 
		$('a#shop_slider').click(function() {
			$('#get_involved').hide('slow');
			$('#volunteering').hide('slow');
			$('#fundraising').hide('slow');	
			$('#shop').show('slow');	
			$('#legacies').hide('slow');	
			$('#giveaminute').hide('slow');	
			$('#corporate').hide('slow');	
			$('#grantsandtrusts').hide('slow');	
			$('#community').hide('slow');
			$('#hospicemeans').hide('slow');
			return false;
		});
		//Legacies Link 
		$('a#legacies_slider').click(function() {
			$('#get_involved').hide('slow');
			$('#volunteering').hide('slow');
			$('#fundraising').hide('slow');	
			$('#shop').hide('slow');	
			$('#legacies').show('slow');	
			$('#giveaminute').hide('slow');	
			$('#corporate').hide('slow');	
			$('#grantsandtrusts').hide('slow');	
			$('#community').hide('slow');
			$('#hospicemeans').hide('slow');
			return false;
		});
		//Give a Minute Campaign Link 
		$('a#giveaminute_slider').click(function() {
			$('#get_involved').hide('slow');
			$('#volunteering').hide('slow');
			$('#fundraising').hide('slow');	
			$('#shop').hide('slow');	
			$('#legacies').hide('slow');	
			$('#giveaminute').show('slow');	
			$('#corporate').hide('slow');	
			$('#grantsandtrusts').hide('slow');	
			$('#community').hide('slow');
			$('#hospicemeans').hide('slow');
			return false;
		});
		//Corporate Partnerships Link 
		$('a#corporate_slider').click(function() {
			$('#get_involved').hide('slow');
			$('#volunteering').hide('slow');
			$('#fundraising').hide('slow');	
			$('#shop').hide('slow');	
			$('#legacies').hide('slow');	
			$('#giveaminute').hide('slow');	
			$('#corporate').show('slow');	
			$('#grantsandtrusts').hide('slow');	
			$('#community').hide('slow');
			$('#hospicemeans').hide('slow');
			return false;
		});
		//Acknowledgment of any grants given by Trusts and Foundations Link 
		$('a#grantsandtrusts_slider').click(function() {
			$('#get_involved').hide('slow');
			$('#volunteering').hide('slow');
			$('#fundraising').hide('slow');	
			$('#shop').hide('slow');	
			$('#legacies').hide('slow');	
			$('#giveaminute').hide('slow');	
			$('#corporate').hide('slow');	
			$('#grantsandtrusts').show('slow');	
			$('#community').hide('slow');
			$('#hospicemeans').hide('slow');
			return false;
		});
		//Community - HospiceCare Challenge Link 
		$('a#community_slider').click(function() {
			$('#get_involved').hide('slow');
			$('#volunteering').hide('slow');
			$('#fundraising').hide('slow');	
			$('#shop').hide('slow');	
			$('#legacies').hide('slow');	
			$('#giveaminute').hide('slow');	
			$('#corporate').hide('slow');	
			$('#grantsandtrusts').hide('slow');	
			$('#community').show('slow');
			$('#hospicemeans').hide('slow');
			return false;
		});
		//What HospiceCare means to me 
		$('a#hospicemeans_slider').click(function() {
			$('#get_involved').hide('slow');
			$('#volunteering').hide('slow');
			$('#fundraising').hide('slow');	
			$('#shop').hide('slow');	
			$('#legacies').hide('slow');	
			$('#giveaminute').hide('slow');	
			$('#corporate').hide('slow');	
			$('#grantsandtrusts').hide('slow');	
			$('#community').hide('slow');
			$('#hospicemeans').show('slow');
			return false;
		});
		
		
	});
