////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//	Custom functions for the George White Junior Site
//
//	04.08.2011	1.0.0	DJV		Created.
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

function menuMouseOver (mId, lId, md)
{
	var menu = document.getElementById (mId).style,
		id = parseInt (mId.substring (5));

	while (id > 3)
		id -= 4;

	if (md == 0)
	{
		menu.height = "20px";
		menu.background = "url('/images/menu/child" + id + "_small.png') no-repeat #0054c6";
	}
	else
	{
		menu.height = "50px";
		menu.background = "url('/images/menu/child" + id + "_anim.gif') no-repeat #0064d6";
	}
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

