$(document).ready(function() {
	$('#productInfo').addClass('jsTabbed');
	$('#productInfo .jsTabContent').hide();
	$('#productInfo .jsTabTitle').hide();
	$('#productInfo .jsTabContent:eq(2)').show();

	$('#productInfo').before('<p class="jsProductInfoTabs"><span class="faqTab"></span><span class="testimonialTab"></span><span class="whereToBuyTab active"></span><span class="partsTab"></span></p>');
	$('.jsProductInfoTabs span').click(function() {
		$('.jsProductInfoTabs span.active').removeClass('active');
		$(this).addClass('active');
		$('#productInfo .jsTabContent').hide();
		$('#productInfo .jsTabContent:eq(' + $(this).index() + ')').show();
	});
});
