/* this script makes the red dot in the top right hand corner of the big blue buttons in the left sidebar, appear & disappear on_mouse_over / out, for some reason on first instance the conditionals in the script wouldn't work, hence the a,b,c variables */

var a = 0;
var b = 0;
var c = 0;

function blob(identification)
{

var theblob = document.getElementById(identification);

if (a == 0)
{
theblob.style.visibility="visible";
a = 1;
}
else if (theblob.style.visibility=="hidden")
{
	theblob.style.visibility="visible";
}
else
{
	theblob.style.visibility="hidden";
}

}

//

function blob1(identification)
{

var theblob = document.getElementById(identification);

if (b == 0)
{
theblob.style.visibility="visible";
b = 1;
}
else if (theblob.style.visibility=="hidden")
{
	theblob.style.visibility="visible";
}
else
{
	theblob.style.visibility="hidden";
}

}

//

function blob2(identification)
{

var theblob = document.getElementById(identification);

if (c == 0)
{
theblob.style.visibility="visible";
c = 1;
}
else if (theblob.style.visibility=="hidden")
{
	theblob.style.visibility="visible";
}
else
{
	theblob.style.visibility="hidden";
}

}
