function tabber(num)
{
    //Change the tab classes to select the appropriate tab
	$(".basic-tabber .tabs a")
		.attr("class", "")
		.eq(num).attr("class", "selected");
	
	//Make the proper content visible
	$(".basic-tabber .tab-content p")
		.hide()
		.eq(num).show();
}