$(document).ready(function() {
		
		$('#content2').hide();
		$('#content3').hide();
		
	$('a#tab1').click(function(){
	
		$('#tabs').children().hide();
		$('#content1').fadeIn();
	
	});
	
	$('a#tab2').click(function(){
	
		$('#tabs').children().hide();
		$('#content2').fadeIn();
	
	});
	
	$('a#tab3').click(function(){
	
		$('#tabs').children().hide();
		$('#content3').fadeIn();
	
	});

});



