function SelectTab(id, selectedTabID) {

	if (selectedTabID != id) {

		$("#tab_" + selectedTabID).attr("class", "tabTitle");
		$("#tab_" + id).attr("class", "tabTitle tabTitleSelect");

		$("#tabContent_" + selectedTabID).attr("class", "tabContent");
		$("#tabContent_" + id).attr("class", "tabContent tabContentSelect");

		selectedTabID = id;

	}

	return selectedTabID;

}

function SelectTabList(id, selectedTabID) {

	if (selectedTabID != id) {

		$(document).ready(function() {

				$('#titleTest_<?php echo ($i+1); ?>').click(function() {

					if($('#contentTest_<?php echo ($i+1); ?>').css('display') == 'none')
					$('#contentTest_<?php echo ($i+1); ?>').slideDown('slow', function () {});
					else
					$('#contentTest_<?php echo ($i+1); ?>').slideUp('slow', function () {});

					});

			});
		
		$("#tab_" + selectedTabID).attr("class", "tabTitle");
		$("#tab_" + id).attr("class", "tabTitle tabTitleSelect");

		//$("#tabContent_" + selectedTabID).attr("class", "tabContent");
		//$("#tabContent_" + id).attr("class", "tabContent tabContentSelect");

		
			$("#tabContent_" + id).slideDown('slow', function () {});
	
			
			$("#tabContent_" + selectedTabID).slideUp('slow', function () { location = "#" + id;});

		
		selectedTabID = id;

		
		
	}

	return selectedTabID;

}

