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