// TABS

$(document).ready(function(){

	$('.content-body').hide(); // Hide all divs
	$('.content-body:first').show(); // Show the first div

	$('a.tabs').click(function(){ //When any link is clicked
		var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
		$('div.content-body').hide(); // Hide all divs
		$(currentTab).show(); // Show div with id equal to variable currentTab
		return false;
	});
});

