//=================================================================================================
//	You can delete these three functions if not needed.
//-------------------------------------------------------------------------------------------------
function customBodyLoad( sender )
{
}
//=================================================================================================
function customBodyResize( sender, size )
{
}
//=================================================================================================
function customBodyScroll( sender )
{
}
//=================================================================================================
function setTab( nr )
{
	var
		curr = $("divTab" + nr );
	
	if ( curr )
	{
		var
			i   = 0, 
			div = $("divTab" + i );
		
		while ( div )
		{
			if ( div != curr )
				div.style.display = "none";
			else
				div.style.display = "";
			
			div = $("divTab" + ++i );
		}
	}
	
	curr = $("aTab" + nr );
	
	if ( curr )
	{
		var
			i = 0, 
			a = $("aTab" + i );
		
		while ( a )
		{
			if ( a != curr )
				a.className = "";
			else
				a.className = "current";
			
			a = $("aTab" + ++i );
		}
	}
}
//=================================================================================================
function swapImage( src )
{
	var
		img = $("imgBig");
	
	if ( img )
		img.src = src;
}
//=================================================================================================

