function swapContent(sectionName){
	if(sectionName=='aboutus'){
		var myText = "A refreshing & vibrant attitude towards your recruitment needs<br/>New vision on recruitment<br/>Successful through delivering results";
	}
	if(sectionName=='candidates'){
		var myText = "Work with a company that puts you first<br/>Your partner for your career<br/>Ashdown, a company that will truly understands your needs";
	}
	if(sectionName=='clients'){
		var myText = "Enjoy who you work with<br/>Professional approach to recruitment<br/>Placement through integrity";
	}
	if(sectionName=='contactus'){
		var myText = "Don't let fear hold you back<br/>Grow & develop with Ashdown<br/>Let us be there for you with our refreshing approach to talent management";
	}	
	var captionDiv = document.getElementById('section-caption');
	captionDiv.innerHTML = myText;
}