////////////////////////////////////////////////////
// Title:			Open Tab
// Author: 			Danny Coulombe
// Description: 	Open tab's content by ID
// Date: 			March 12th 2009

function openTab(strCallerId, strTabId, strItemId)
{
	if(!$("#" + strCallerId).hasClass("selected"))
	{
		// Remove the selection of every tabs
		$("#" + strTabId + " .webTabs-selection a").each(function(){
			$(this).removeClass("selected");
		});
		
		// Hide all the content
		$("#" + strTabId + " .webTabs-content .webTabs-item").each(function(){
			$(this).hide();
		});
		
		// Add selection on the clicked tab
		$("#" + strCallerId).toggleClass("selected");
		$("#" + strItemId).fadeIn(500);
	}
}