$(document).ready(function(){
	$('#tabs div').hide();
	$('#tabs div:first').show();
	$('#sub-nav li:first').addClass('active');
	 
	$('#sub-nav li a').click(function(){
		$('#sub-nav li').removeClass('active');
		$(this).parent().addClass('active');
		var currentTab = $(this).attr('href');
		$('#tabs div').hide();
		$(currentTab).show();
		return false;
	});
});

