$(document).ready(function () {
	
	var active_tab = $("#type");
	$("#type, #mats, #plastic, #wood").bind('click', function () {
		
		// Id
		var id = $(this);
		var content = $("#" + $(this).attr("id") + "_content");
		
		// Check for old var
		if (active_tab != false) {
			
			// Id
			var active_id = $(active_tab).attr("id");
			
			// Hide
			$(active_tab).removeClass("active");
			$("#" + active_id + "_content").hide();
		}
		
		// Show
		$(id).addClass("active");
		$(content).show();
		
		// Save
		active_tab = id;
	});
	

	
});