function tab_switch( tab_integer )
{
	/* hide all tabs */
	$("#product-1, #product-2, #product-3, #product-4").hide()

	/* show correct tab */
	$("#product-" + tab_integer ).show()
	
	/* add on/off classes to links */
	$(".tabOn1").attr("class", "tab1")
	$(".tabOn2").attr("class", "tab2")
	$(".tabOn3").attr("class", "tab3")
	$(".tabOn4").attr("class", "tab4")	
	
	$(".tab" + tab_integer ).attr("class", "tabOn" + tab_integer )[0].hideFocus = true
	
	this.hideFocus = true
}
