var show1a = false
var show1b = false
var show2a = false
var show2b = false
var show3a = false
var show3b = false

function dd1(source,state)
	{
	if (source == 0)
		{
		if (state == 0)
			{show1a = false; setTimeout("drop1()",100)}
		else
			{show1a = true; drop1()}
		}
	else
		{
		if (state == 0)
			{show1b = false; setTimeout("drop1()",100)}
		else
			{show1b = true; drop1()}
		}
	}

function drop1()
	{
	if (show1a == true || show1b == true)
		{
		document.getElementById("dropdown1").style.visibility="visible"
		document.getElementById("dropdown2").style.visibility="hidden"
		}
	else
		{document.getElementById("dropdown1").style.visibility="hidden"}
	}

function dd2(source,state)
	{
	if (source == 0)
		{
		if (state == 0)
			{show2a = false; setTimeout("drop2()",100)}
		else
			{show2a = true; drop2()}
		}
	else
		{
		if (state == 0)
			{show2b = false; setTimeout("drop2()",100)}
		else
			{show2b = true; drop2()}
		}
	}

function drop2()
	{
	if (show2a == true || show2b == true)
		{
		document.getElementById("dropdown2").style.visibility="visible"
		document.getElementById("dropdown1").style.visibility="hidden"
		document.getElementById("dropdown3").style.visibility="hidden"
		}
	else
		{document.getElementById("dropdown2").style.visibility="hidden"}
	}

function dd3(source,state)
	{
	if (source == 0)
		{
		if (state == 0)
			{show3a = false; setTimeout("drop3()",100)}
		else
			{show3a = true; drop3()}
		}
	else
		{
		if (state == 0)
			{show3b = false; setTimeout("drop3()",100)}
		else
			{show3b = true; drop3()}
		}
	}

function drop3()
	{
	if (show3a == true || show3b == true)
		{
		document.getElementById("dropdown3").style.visibility="visible"
		document.getElementById("dropdown2").style.visibility="hidden"
		}
	else
		{document.getElementById("dropdown3").style.visibility="hidden"}
	}

function dwewing()
	{
	window.location = "http://www.dwewingmovers.com";
	}

function redball()
	{
	window.location = "http://www.redball.com";
	}
