var showcaseBaseWidth = 850;

$(document).ready(function() {
	$("#productSpecs h3 a").click(function() {
		if($("#productSpecs .text").css('display') == 'none') {
			$("#productSpecs h3 a").addClass('active');
			$("#productSpecs .text").slideDown();
		} else {
			$("#productSpecs h3 a").removeClass('active');
			$("#productSpecs .text").slideUp();
		}
	});

	$("#productChart h3 a").click(function() {
		if($("#productChart .text").css('display') == 'none') {
			$("#productChart h3 a").addClass('active');
			$("#productChart .text").slideDown();
		} else {
			$("#productChart h3 a").removeClass('active');
			$("#productChart .text").slideUp();
		}
	});
});