$(function() {	
		   
		   
		   
	// Content Tabs
	$('#productSpecifications').hide(); 	
	$('#btnSpecs').click(function() {
		if ($(this).hasClass('current')) {
		} else {
			$('#productFeatures').hide();
			$('#productSpecifications').show();
			$('#btnSpecs').toggleClass('current');
			$('#btnFeatures').toggleClass('current');
		}		
	});
	
	$('#btnFeatures').click(function() {
		if ($(this).hasClass('current')) {
		} else {
			$('#productFeatures').show();
			$('#productSpecifications').hide();
			$('#btnSpecs').toggleClass('current');
			$('#btnFeatures').toggleClass('current');
		}
	});
	
	
	function showSecondary() {
		$('#productFeatures').hide();
		$('#productSpecifications').show();
		$('#btnSpecs').toggleClass('current');
		$('#btnFeatures').toggleClass('current');
	}
	
	
	
	
	// Allow links to submit forms
	
	$("#productAdd").click(function() {
    	$("#addToQuote").submit(); 
	});
	
	$(".addToQuoteBtn").click(function() {
    	$(this).parent().submit(); 
	});
	
	
	
});
