$(document).ready(function(){

	startSwapper();


});

	function startSwapper() {
		
		
		$('#themusician a').click(function() {
		showMusic();
		return false;
		});
	
		$('#thetvstar a').click(function() {
		showTV();
		return false;
		});

		function showMusic(num) {
			$('#content-tvstar').hide('fast');
			$('#content-musician').show('fast');
			$('#themusician').addClass('btn-current');
			$('#thetvstar').removeClass('btn-current');	
		}
		
		function showTV(num) {
			$('#content-musician').hide('fast');
			$('#content-tvstar').show('fast');
			$('#thetvstar').addClass('btn-current');
			$('#themusician').removeClass('btn-current');	
		}
		
	}
