// services show / hide boxes
	$(window).load(function() {
			
		//News stories Link 
		$('a#newsstories_slider').click(function() {
			$('#news_page').hide('slow');
			$('#newsstories').show('slow');
			$('#fundraising').hide('slow');	
			$('#newsarchive').hide('slow');	
			$('#giveaminute').hide('slow');	
			$('#abouthospice').hide('slow');	
			$('#hospicemeans').hide('slow');	
			return false;
		});	
		//Fundraising Events Link 
		$('a#fundraising_slider').click(function() {
			$('#news_page').hide('slow');
			$('#newsstories').hide('slow');
			$('#fundraising').show('slow');	
			$('#newsarchive').hide('slow');	
			$('#giveaminute').hide('slow');	
			$('#abouthospice').hide('slow');	
			$('#hospicemeans').hide('slow');	
			return false;
		});
		//News Archive Link 
		$('a#newsarchive_slider').click(function() {
			$('#news_page').hide('slow');
			$('#newsstories').hide('slow');
			$('#fundraising').hide('slow');	
			$('#newsarchive').show('slow');	
			$('#giveaminute').hide('slow');	
			$('#abouthospice').hide('slow');	
			$('#hospicemeans').hide('slow');	
			return false;
		});
		//Give a Minute Campaign Link 
		$('a#giveaminute_slider').click(function() {
			$('#news_page').hide('slow');
			$('#newsstories').hide('slow');
			$('#fundraising').hide('slow');	
			$('#newsarchive').hide('slow');	
			$('#giveaminute').show('slow');	
			$('#abouthospice').hide('slow');	
			$('#hospicemeans').hide('slow');	
			return false;
		});
		//10 things you need to know about the Hospice Link 
		$('a#abouthospice_slider').click(function() {
			$('#news_page').hide('slow');
			$('#newsstories').hide('slow');
			$('#fundraising').hide('slow');	
			$('#newsarchive').hide('slow');	
			$('#giveaminute').hide('slow');	
			$('#abouthospice').show('slow');	
			$('#hospicemeans').hide('slow');	
			return false;
		});
		//What HospiceCare means to me
		$('a#hospicemeans_slider').click(function() {
			$('#news_page').hide('slow');
			$('#newsstories').hide('slow');
			$('#fundraising').hide('slow');	
			$('#newsarchive').hide('slow');	
			$('#giveaminute').hide('slow');	
			$('#abouthospice').hide('slow');	
			$('#hospicemeans').show('slow');	
			return false;
		});
		
	});
