$(document).ready(function(){
	metalPrices();
});

function metalPrices() {
	$('.metal_table').hide();
	$('.metal_table:first').show();
	
	$('#metal_nav a').click(function(event) {
		event.preventDefault();
		var id = $(this).attr('id');
		id = '.' + id;
		$('.metal_table').hide();
		$(id).show();
	});
}
