function takeFirstHeaderEffect(obj)
{
	obj.style.color = '#558CC4';
	obj.style.cursor = 'hand';
}

function removeFirstHeaderEffect(obj)
{
	obj.style.color = '#A5A5A5';
}

function takeSecondHeaderEffect(obj)
{
	obj.style.color = 'black';
	obj.style.backgroundColor = 'white';
	obj.style.cursor = 'hand';
}

function removeSecondHeaderEffect(obj)
{
	obj.style.color = 'white';
	obj.style.backgroundColor = 'black';
}

function takeNavigationBarEffect(obj,path)
{
	obj.background = path;
	obj.style.cursor = 'hand';
}

function removeNavigationBarEffect(obj,path)
{
	obj.background = path;
}

function takeNavigationBarArEffect(obj,path)
{
	obj.background = path;
	obj.style.cursor = 'hand';
}

function removeNavigationBarArEffect(obj,path)
{
	obj.background = path;
}


function takeSignInEffect(obj,path)
{
	obj.src = path;
	obj.style.cursor = 'hand';
}

function removeSignInEffect(obj,path)
{
	obj.src = path;
}

function takeSignInArEffect(obj,path)
{
	obj.src = path;
	obj.style.cursor = 'hand';
}

function removeSignInArEffect(obj,path)
{
	obj.src = path;
}


function takeLoginTextEffect(obj)
{
	obj.style.color = '#558CC4';
	obj.style.cursor = 'hand';
}

function removeLoginTextEffect(obj)
{
	obj.style.color = 'black';
}
