$(document).ready(function(){
	initialiseSlider();
});
function initialiseSlider(){
	$('div.slider .sliderTitle').append('<span class="expand">expand</span><span class="contract">contract</span>');
	$('span.contract').hide();
	$('.slider .sliderCopy').hide();
	sliderFunctions();
	toggleThis()
}
function toggleThis(e){
	$('.slider .show').next('.sliderCopy').slideToggle('fast').toggleClass('open')
	$('.slider .show').children("span").toggle();
}
function sliderFunctions(){
	$('.slider .sliderTitle').click(function(){
		$(this).next('.sliderCopy').slideToggle('fast').toggleClass('open');
		$(this).children("span").toggle();
	});
}


