$(document).ready(function(){
	// tab switching
	$('#tab-content-1, #tab-content-2').hide();
	$('#tab-content-1').show();
	$('#tabs li:first').addClass('active');
		
	$('#tabs li a').click(function(){
		var activeTab = $(this).attr('href');
		$('#tabs li').removeClass('active');
		$(this).parent().addClass('active');
		$(activeTab).show();
		$(activeTab).siblings().hide();
		return false;
	});
});
