// JavaScript Document
var BDContact = new function()
{
	//internal...
	var		bVisible = false;
	
	//external functional interface...
	return {
	//start collection of export name/value pairs - each name is the function name, and the value is the function - commas allow multiple pairs - ahh, JavaScript...
	//ShowBigPic : function(event, bigPicName, bigPicObj)
	ToggleBalls : function(event, ballsObj)
	{
		bVisible = !bVisible;
		
		if(bVisible)
		{
			ballsObj.style.visibility = "visible";
		}
		else
		{
			ballsObj.style.visibility = "hidden";
		}
	}
	
	};
};