$(function () {
	$('a.tab').click(function(event) {
		event.preventDefault();
		var which = $(this).attr('tab_id');
		$('div.tabbed-view').hide();
		$('#'+which).show();
		$('a.tab.active').removeClass('active');
		$(this).addClass('active');
	});

	$('#productnav li a').click(function(event) {
		event.preventDefault();
		var which = $(this).attr('href');
		if(which == '#pricechart') {
			return;
		}
		$('div.tabbed-view').hide();
		$(which).show();
		$('a.tab.active').removeClass('active');
		$('a.tab[tab_id='+which.substr(1)+']').addClass('active');
	});
});
