$(function()
{
	$("#Tiresgo").click(function()
	{
		location.href = $("#Tires").val();
		return false;
	})

	$("#Wheelgo").click(function()
	{
		location.href = $("#Wheel").val();
		return false;
	})

	var url = location.search;
	if(url.indexOf("pm") != -1)
	{
		//alert(eval(url.substring(url.lastIndexOf("=")+1)));
		$(".table2").hide();
		$(".table2").eq(eval(url.substring(url.lastIndexOf("=")+1))).show();
	}
})